mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-09 03:24:58 +00:00
added empty statement to empty catch blocks
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@202043 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ebff428ba5
commit
12431fdb8f
@ -197,7 +197,7 @@ && isDigits(numeric.substring(1))
|
||||
try {
|
||||
return createLong(numeric);
|
||||
} catch (NumberFormatException nfe) {
|
||||
//Too big for a long
|
||||
; //Too big for a long
|
||||
}
|
||||
return createBigInteger(numeric);
|
||||
|
||||
|
@ -114,7 +114,7 @@ public static void serialize(Serializable obj, OutputStream outputStream) {
|
||||
out.close();
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
// ignore;
|
||||
; // ignore
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -170,7 +170,7 @@ public static Object deserialize(InputStream inputStream) {
|
||||
in.close();
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
// ignore
|
||||
; // ignore
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -548,11 +548,11 @@ public final boolean equals(Object other) {
|
||||
String name = (String) mth.invoke(other, null);
|
||||
return iName.equals(name);
|
||||
} catch (NoSuchMethodException e) {
|
||||
// ignore - should never happen
|
||||
; // ignore - should never happen
|
||||
} catch (IllegalAccessException e) {
|
||||
// ignore - should never happen
|
||||
; // ignore - should never happen
|
||||
} catch (InvocationTargetException e) {
|
||||
// ignore - should never happen
|
||||
; // ignore - should never happen
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -548,11 +548,11 @@ public final boolean equals(Object other) {
|
||||
String name = (String) mth.invoke(other, null);
|
||||
return iName.equals(name);
|
||||
} catch (NoSuchMethodException e) {
|
||||
// ignore - should never happen
|
||||
; // ignore - should never happen
|
||||
} catch (IllegalAccessException e) {
|
||||
// ignore - should never happen
|
||||
; // ignore - should never happen
|
||||
} catch (InvocationTargetException e) {
|
||||
// ignore - should never happen
|
||||
; // ignore - should never happen
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -456,7 +456,7 @@ && isDigits(numeric.substring(1))
|
||||
try {
|
||||
return createLong(numeric);
|
||||
} catch (NumberFormatException nfe) {
|
||||
//Too big for a long
|
||||
; //Too big for a long
|
||||
}
|
||||
return createBigInteger(numeric);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user