Do not declare multiple variables on a single line

Change-Id: I6ce1cf9e542beda96222b5fbc7c891f086890586
This commit is contained in:
David Pursehouse
2015-03-16 17:33:20 +09:00
parent 8f2ced605b
commit ad5e634302
15 changed files with 37 additions and 17 deletions

View File

@@ -83,7 +83,8 @@ public final class RangeUtil {
*/
public static Range getRange(
String prefix, String test, int queryInt, int minValue, int maxValue) {
int min, max;
int min;
int max;
switch (test) {
case "=":
default:

View File

@@ -75,7 +75,8 @@ public abstract class RegexListSearcher<T> implements Function<T, String> {
public Iterable<T> search(List<T> list) {
checkNotNull(list);
int begin, end;
int begin;
int end;
if (0 < prefixLen) {
// Assumes many consecutive elements may have the same prefix, so the cost