Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Sep 5, 2024
1 parent 59296f1 commit 91d0d43
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/org/entur/lamassu/service/impl/GeoUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ private static double getDiagonalLength(ReferencedEnvelope envelope) {
throw new IllegalArgumentException(e);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new IllegalStateException("Unable to calculate diagonal length of envelope", e);
throw new IllegalStateException(
"Unable to calculate diagonal length of envelope",
e
);
} finally {
GeodeticCalculatorPoolManager.release(gc);
}
Expand Down

0 comments on commit 91d0d43

Please sign in to comment.