Format: "catch(" -> "catch ("
This commit is contained in:
parent
df64310a69
commit
cdcd915d02
|
@ -68,7 +68,7 @@ import org.apache.commons.lang3.Validate;
|
||||||
* semaphore.acquire(); // limit database load
|
* semaphore.acquire(); // limit database load
|
||||||
* performQuery(); // issue a query
|
* performQuery(); // issue a query
|
||||||
* }
|
* }
|
||||||
* } catch(InterruptedException) {
|
* } catch (InterruptedException) {
|
||||||
* // fall through
|
* // fall through
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
|
|
|
@ -140,7 +140,7 @@ public class NumericEntityUnescaper extends CharSequenceTranslator {
|
||||||
} else {
|
} else {
|
||||||
entityValue = Integer.parseInt(input.subSequence(start, end).toString(), 10);
|
entityValue = Integer.parseInt(input.subSequence(start, end).toString(), 10);
|
||||||
}
|
}
|
||||||
} catch(final NumberFormatException nfe) {
|
} catch (final NumberFormatException nfe) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue