Skip to content

Commit 48fbb77

Browse files
committed
Style fix
1 parent 1909dfa commit 48fbb77

File tree

1 file changed

+2
-2
lines changed
  • substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted

1 file changed

+2
-2
lines changed

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/SVMHost.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ public boolean isInitialized(AnalysisType type) {
292292
@Override
293293
public GraphBuilderConfiguration updateGraphBuilderConfiguration(GraphBuilderConfiguration config, AnalysisMethod method) {
294294
return config.withRetainLocalVariables(retainLocalVariables())
295-
.withUnresolvedIsError(linkAtBuildTimeSupport.linkAtBuildTime(method.getDeclaringClass()));
295+
.withUnresolvedIsError(linkAtBuildTimeSupport.linkAtBuildTime(method.getDeclaringClass()));
296296
}
297297

298298
private boolean retainLocalVariables() {
@@ -426,7 +426,7 @@ private Object isAnonymousClass(Class<?> javaClass) {
426426

427427
private Object unsupportedMethod(Class<?> javaClass, String methodName) {
428428
String message = "Discovered a type for which " + methodName + " cannot be called: " + javaClass.getTypeName() + ". " +
429-
linkAtBuildTimeSupport.errorMessageFor(javaClass);
429+
linkAtBuildTimeSupport.errorMessageFor(javaClass);
430430
throw new UnsupportedFeatureException(message);
431431
}
432432

0 commit comments

Comments
 (0)