You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python.processor/src/com/oracle/graal/python/processor/CApiBuiltinsProcessor.java
+4-3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
2
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* The Universal Permissive License (UPL), Version 1.0
@@ -121,8 +122,8 @@ public synchronized void init(ProcessingEnvironment pe) {
121
122
try {
122
123
this.trees = Trees.instance(pe);
123
124
} catch (Throwablet) {
124
-
// ECJ does not support this, so we skip the some processing of C API builtins
125
-
pe.getMessager().printWarning("The compiler does not support source tree parsing during annotation processing. Regeneration of Python C API builtins will be incorrect.");
125
+
// ECJ does not support this, so we skip the processing of C API builtins
126
+
pe.getMessager().printMessage(Kind.NOTE, "The compiler does not support source tree parsing during annotation processing. Regeneration of Python C API builtins will be incorrect.");
0 commit comments