From 12c107bd2990af7c36d46494725a057b6d7dbe1a Mon Sep 17 00:00:00 2001 From: "ray.j.greenwell" Date: Fri, 16 Apr 2010 00:56:06 +0000 Subject: [PATCH] Why is this ? git-svn-id: https://samskivert.googlecode.com/svn/trunk@2775 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/util/ArrayUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/util/ArrayUtil.java b/src/java/com/samskivert/util/ArrayUtil.java index 466ad690..031d3cad 100644 --- a/src/java/com/samskivert/util/ArrayUtil.java +++ b/src/java/com/samskivert/util/ArrayUtil.java @@ -37,7 +37,7 @@ public class ArrayUtil * * @return the index of the first matching value if one was found, -1 otherwise. */ - public static int indexOf (T[] values, T value) + public static int indexOf (T[] values, T value) { int count = (values == null) ? 0 : values.length; for (int ii = 0; ii < count; ii++) {