Format: "catch(" -> "catch ("

This commit is contained in:
Gary Gregory 2023-04-19 07:33:39 -04:00
parent df64310a69
commit cdcd915d02
2 changed files with 2 additions and 2 deletions

View File

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

View File

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