Skip to content

Commit 4ce719d

Browse files
committed
fix style
1 parent cace537 commit 4ce719d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common/SequenceStorageNodes.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2335,8 +2335,8 @@ public abstract static class ConcatNode extends SequenceStorageBaseNode {
23352335
private final Supplier<GeneralizationNode> genNodeProvider;
23362336

23372337
/*
2338-
* CPython is inconsistent when too repeats are done. Most types raise MemoryError, but
2339-
* e.g. bytes raises OverflowError when the memory might be available but the size overflows
2338+
* CPython is inconsistent when too repeats are done. Most types raise MemoryError, but e.g.
2339+
* bytes raises OverflowError when the memory might be available but the size overflows
23402340
* sys.maxint
23412341
*/
23422342
private final PythonBuiltinClassType errorForOverflow;
@@ -2519,8 +2519,8 @@ public abstract static class RepeatNode extends SequenceStorageBaseNode {
25192519
@Child private RepeatNode recursive;
25202520

25212521
/*
2522-
* CPython is inconsistent when too repeats are done. Most types raise MemoryError, but
2523-
* e.g. bytes raises OverflowError when the memory might be available but the size overflows
2522+
* CPython is inconsistent when too repeats are done. Most types raise MemoryError, but e.g.
2523+
* bytes raises OverflowError when the memory might be available but the size overflows
25242524
* sys.maxint
25252525
*/
25262526
private final PythonBuiltinClassType errorForOverflow;

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/util/PythonUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ public static void getChars(String str, int srcBegin, int srcEnd, char[] dst, in
9595
}
9696

9797
/*
98-
* Replacements for JDK's exact math methods that throw the checked singleton
99-
* {@link OverflowException}. The implementation is taken from JDK.
98+
* Replacements for JDK's exact math methods that throw the checked singleton {@link
99+
* OverflowException}. The implementation is taken from JDK.
100100
*/
101101
public static int addExact(int x, int y) throws OverflowException {
102102
int r = x + y;

0 commit comments

Comments
 (0)