Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

7903214: JOL: Complete some TODOs in VMOptions #29

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions jol-core/src/main/java/org/openjdk/jol/vm/VMOptions.java
Expand Up @@ -44,7 +44,6 @@ public static Boolean pollCompressedOops() {
try {
return Boolean.valueOf(getString("UseCompressedOops"));
} catch (Exception exp) {
// TODO: log
return null;
}
}
Expand All @@ -53,7 +52,6 @@ public static Boolean pollCompressedClassPointers() {
try {
return Boolean.valueOf(getString("UseCompressedClassPointers"));
} catch (Exception exp) {
// TODO: log
return null;
}
}
Expand All @@ -63,11 +61,9 @@ public static Integer pollObjectAlignment() {
try {
return Integer.valueOf(getString("ObjectAlignmentInBytes"));
} catch (Exception exp) {
// TODO: log
return null;
}
}
// TODO: log
return null;
}

Expand Down