Skip to content

Commit 715f8b5

Browse files
committed
check style
1 parent b0924c9 commit 715f8b5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PosixModuleBuiltins.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1633,7 +1633,8 @@ abstract static class UmaskNode extends PythonBuiltinNode {
16331633
int getAndSetUmask(int umask) {
16341634
if (umask == 0022) {
16351635
return 0022;
1636-
} if (umask == 0) {
1636+
}
1637+
if (umask == 0) {
16371638
// TODO: change me, this does not really set the umask, workaround needed for pip
16381639
// it returns the previous mask (which in our case is always 0022)
16391640
return 0022;

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/bytes/BytesUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates.
2+
* Copyright (c) 2017, 2019, Oracle and/or its affiliates.
33
* Copyright (c) 2014, Regents of the University of California
44
*
55
* All rights reserved.

0 commit comments

Comments
 (0)