Skip to content

Commit

Permalink
javafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
radeusgd committed Jun 27, 2023
1 parent ded5771 commit 516bba6
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import java.util.concurrent.locks.ReentrantLock;
import java.util.function.Function;
import java.util.logging.Logger;

import org.graalvm.polyglot.Value;

/**
Expand Down Expand Up @@ -56,8 +55,8 @@ public void runMaintenanceActionIfPossible(Function<Void, Value> maintenanceActi
try {
maintenanceAction.apply(null);
} catch (Exception e) {
Logger.getLogger("enso-std-database").severe(
"A maintenance action failed with exception: " + e.getMessage());
Logger.getLogger("enso-std-database")
.severe("A maintenance action failed with exception: " + e.getMessage());
} finally {
nestingLevel--;
}
Expand Down

0 comments on commit 516bba6

Please sign in to comment.