File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2018, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2018, 2023 , 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
57
57
import java .util .SortedMap ;
58
58
import java .util .TreeMap ;
59
59
60
+ import com .oracle .graal .python .util .SuppressFBWarnings ;
60
61
import com .oracle .truffle .api .CompilerDirectives .TruffleBoundary ;
61
62
import com .oracle .truffle .api .TruffleFile ;
62
63
import com .oracle .truffle .api .TruffleLanguage .Env ;
@@ -141,6 +142,9 @@ public void destroy() {
141
142
}
142
143
143
144
@ Override
145
+ // Can be removed once the `graalpython` suite has mxversion >= 6.27.1.
146
+ // Until then, the analysis does not see an implementation with side effects.
147
+ @ SuppressFBWarnings (value = "RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT" )
144
148
public Process destroyForcibly () {
145
149
for (Process child : children ) {
146
150
if (child != null && child != this ) {
You can’t perform that action at this time.
0 commit comments