Skip to content

Commit ea08601

Browse files
committed
Fix style
1 parent 4de7622 commit ea08601

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/hpy/GraalHPyJNIContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
*/
6464
@ExportLibrary(InteropLibrary.class)
6565
final class GraalHPyJNIContext implements TruffleObject {
66-
66+
6767
GraalHPyJNIContext(@SuppressWarnings("unused") GraalHPyContext context) {
6868
}
6969

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ private PythonOptions() {
184184
@EngineOption @Option(category = OptionCategory.INTERNAL, help = "If {@code true}, code is enabled that tries to reduce expensive upcalls into the runtime" +
185185
"when HPy API functions are used. This is achieved by mirroring data in native memory.", stability = OptionStability.EXPERIMENTAL) //
186186
public static final OptionKey<TriState> HPyUseNativeFastPaths = new OptionKey<>(TriState.UNDEFINED, TRI_STATE_OPTION_TYPE);
187-
187+
188188
@Option(category = OptionCategory.INTERNAL, help = "Specify the directory where the JNI library is located.", stability = OptionStability.EXPERIMENTAL) //
189189
public static final OptionKey<String> JNIHome = new OptionKey<>("");
190190

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def do_run_python(args, extra_vm_args=None, env=None, jdk=None, extra_dists=None
143143
args.insert(0, "--python.CAPI=%s" % capi_home)
144144
args.insert(0, "--experimental-options")
145145
experimental_opt_added = True
146-
146+
147147
if not any(arg.startswith("--python.JNIHome") for arg in args):
148148
args.insert(0, "--python.JNIHome=" + _get_jni_home())
149149
if not experimental_opt_added:

0 commit comments

Comments
 (0)