summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-10-11 09:20:05 +0000
committerPeter Palfrader <peter@palfrader.org>2003-10-11 09:20:05 +0000
commitbe84406cca21af4e02ea05dc010b978e05310f0a (patch)
treeb9b4f3951bf8dd28b8a5f98f4331f9f30a6fbe36 /src
parentc0b4753013b922a2d5b75dc8fea12a78a5465bd9 (diff)
Close comment in front of slice()
Diffstat (limited to 'src')
-rw-r--r--src/org/noreply/fancydress/misc/Util.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/org/noreply/fancydress/misc/Util.java b/src/org/noreply/fancydress/misc/Util.java
index d75b540..f9962bf 100644
--- a/src/org/noreply/fancydress/misc/Util.java
+++ b/src/org/noreply/fancydress/misc/Util.java
@@ -143,6 +143,7 @@ public class Util {
* @param s starting position
* @param len length to copy
* @return the slice of <code>a</code> starting at <code>s</code> of <code>len</code> octets in length
+ */
public static byte[] slice(byte[] a, int s, int len) {
byte[] result = new byte[len];
System.arraycopy(a, s, result, 0, len);