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:
Taro L. Saito 2025-07-19 12:27:58 -07:00
parent 4e0df477a3
commit dc0cf13b50

View File

@ -234,8 +234,7 @@ public class OSInfo {
private static boolean isX64Musl() {
try {
return new File("/lib/ld-musl-x86_64.so.1").exists();
}
catch (SecurityException e) {
} catch (SecurityException e) {
return false;
}
}