Skip to content

Commit 023bc51

Browse files
committed
style: apply spotless formatting
1 parent 446dbd5 commit 023bc51

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/uber/h3core/H3CoreLoader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private static File createTempLibraryFile(OperatingSystem os) throws IOException
9797
// Check if the user specified a custom directory for native libraries
9898
String customDir = System.getProperty("h3.native.dir");
9999
File dir = customDir != null ? new File(customDir) : null;
100-
100+
101101
// Ensure the custom directory exists
102102
if (dir != null && !dir.exists()) {
103103
dir.mkdirs();
@@ -109,7 +109,7 @@ private static File createTempLibraryFile(OperatingSystem os) throws IOException
109109
// write.
110110
final FileAttribute<Set<PosixFilePermission>> attr =
111111
PosixFilePermissions.asFileAttribute(PosixFilePermissions.fromString("rwx------"));
112-
112+
113113
if (dir != null) {
114114
return Files.createTempFile(dir.toPath(), "libh3-java", os.getSuffix(), attr).toFile();
115115
} else {

0 commit comments

Comments
 (0)