Skip to content

Commit

Permalink
moved LibGraalFeatureComponent out of jdk.graal.nativeimage and renam…
Browse files Browse the repository at this point in the history
…ed to FeatureComponent ++
  • Loading branch information
dougxc committed Jan 8, 2025
1 parent 09e3e45 commit ffd8bc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public final class LibGraalFeature implements Feature {

public LibGraalFeature() {
synchronized (LibGraalFeature.class) {
GraalError.guarantee(singleton == null, "only a single " + LibGraalFeature.class.getName() + " instance should be created");
GraalError.guarantee(singleton == null, "only a single %s instance should be created", LibGraalFeature.class.getName());
singleton = this;
}
}
Expand Down

0 comments on commit ffd8bc9

Please sign in to comment.