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:
Steven Caswell 2005-06-27 20:24:10 +00:00
parent ebff428ba5
commit 12431fdb8f
5 changed files with 10 additions and 10 deletions

View File

@ -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);

View File

@ -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
}
}
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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);