Skip to content

Commit dc0cf13

Browse files
xerialclaude
andcommitted
fix: correct indentation in OSInfo.java catch block
Fixed improper indentation of catch statement at line 237 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4e0df47 commit dc0cf13

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/org/xerial/snappy/OSInfo.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,7 @@ public static String getArchName() {
234234
private static boolean isX64Musl() {
235235
try {
236236
return new File("/lib/ld-musl-x86_64.so.1").exists();
237-
}
238-
catch (SecurityException e) {
237+
} catch (SecurityException e) {
239238
return false;
240239
}
241240
}

0 commit comments

Comments
 (0)