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

Add comment about the use of Config.ensureInitialized #6694

Merged
merged 1 commit into from
Jan 21, 2020
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,8 @@ public void run() {
}

// generate ensure-initialized method
// the point of this method is simply to initialize the Config class
// thus initializing the config infrastructure before anything requests it
try (MethodCreator mc = cc.getMethodCreator(C_ENSURE_INITIALIZED)) {
mc.setModifiers(Opcodes.ACC_PUBLIC | Opcodes.ACC_STATIC);
mc.returnValue(null);
Expand Down