mirror of
https://github.com/xerial/snappy-java.git
synced 2025-07-26 07:24:54 +02:00
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>
This commit is contained in:
parent
4e0df477a3
commit
dc0cf13b50
@ -234,8 +234,7 @@ public class OSInfo {
|
|||||||
private static boolean isX64Musl() {
|
private static boolean isX64Musl() {
|
||||||
try {
|
try {
|
||||||
return new File("/lib/ld-musl-x86_64.so.1").exists();
|
return new File("/lib/ld-musl-x86_64.so.1").exists();
|
||||||
}
|
} catch (SecurityException e) {
|
||||||
catch (SecurityException e) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user