From a9de4b243d03a09e7be4a7a7b3ddbd8f5e835c99 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 25 Jun 2014 12:59:07 -0700 Subject: [PATCH] Javadoc tweak. 1.8 javadoc now freaks out about bare < and > in Javadoc. Yay! --- src/main/java/com/samskivert/util/StringUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/samskivert/util/StringUtil.java b/src/main/java/com/samskivert/util/StringUtil.java index d96625b5..9f3cf16c 100644 --- a/src/main/java/com/samskivert/util/StringUtil.java +++ b/src/main/java/com/samskivert/util/StringUtil.java @@ -657,8 +657,8 @@ public class StringUtil * bytes. Returns the empty string for a null or empty byte array. * * @param bytes the bytes for which we want a string representation. - * @param count the number of bytes to stop at (which will be coerced into being <= the length - * of the array). + * @param count the number of bytes to stop at (which will be coerced into being {@code <=} the + * length of the array). */ public static String hexlate (byte[] bytes, int count) {