Skip to content

Commit 8533c4a

Browse files
authored
📁 pre-commit
Signed-off-by: exadev[bot] <exadev[bot]@users.noreply.github.com>
1 parent e607c58 commit 8533c4a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

app/core/src/main/java/stirling/software/SPDF/UI/impl/LoadingWindow.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,9 @@ private void checkAndRefreshExplorer() {
227227
if (!existingPids
228228
.contains(
229229
pid)) {
230-
log.debug("Found new explorer.exe with PID: {}", pid);
230+
log.debug(
231+
"Found new explorer.exe with PID: {}",
232+
pid);
231233
ProcessBuilder
232234
killProcess =
233235
new ProcessBuilder(
@@ -245,7 +247,9 @@ private void checkAndRefreshExplorer() {
245247
2,
246248
TimeUnit
247249
.SECONDS);
248-
log.debug("Explorer process terminated: {}", pid);
250+
log.debug(
251+
"Explorer process terminated: {}",
252+
pid);
249253
}
250254
}
251255
}

app/core/src/main/java/stirling/software/SPDF/controller/api/misc/MetadataController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323

2424
import stirling.software.SPDF.model.api.misc.MetadataRequest;
2525
import stirling.software.common.service.CustomPDFDocumentFactory;
26+
import stirling.software.common.service.PdfMetadataService;
2627
import stirling.software.common.util.GeneralUtils;
2728
import stirling.software.common.util.RegexPatternUtils;
28-
import stirling.software.common.service.PdfMetadataService;
2929
import stirling.software.common.util.WebResponseUtils;
3030
import stirling.software.common.util.propertyeditor.StringToMapPropertyEditor;
3131

0 commit comments

Comments
 (0)