Move files in preparation for monorepo migration

This commit is contained in:
Jai A
2024-07-03 13:23:21 -07:00
parent 8140db32dd
commit a04cb54d86
232 changed files with 0 additions and 7116 deletions

View File

@@ -0,0 +1,22 @@
public final class JavaInfo {
private static final String[] CHECKED_PROPERTIES = new String[] {
"os.arch",
"java.version"
};
public static void main(String[] args) {
int returnCode = 0;
for (String key : CHECKED_PROPERTIES) {
String property = System.getProperty(key);
if (property != null) {
System.out.println(key + "=" + property);
} else {
returnCode = 1;
}
}
System.exit(returnCode);
}
}