Skip to content

Commit bba205e

Browse files
author
Franziska Geiger
committed
Another style error
1 parent 72ffb5e commit bba205e

File tree

1 file changed

+2
-2
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/bytes

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ public Object mul(PBytes self, int times,
294294

295295
@Specialization
296296
public Object mul(PBytes self, Object times,
297-
@Cached("create()") SequenceStorageNodes.RepeatNode repeatNode,
298-
@Cached("create()") CastToIndexNode castToInt) {
297+
@Cached("create()") SequenceStorageNodes.RepeatNode repeatNode,
298+
@Cached("create()") CastToIndexNode castToInt) {
299299
SequenceStorage res = repeatNode.execute(self.getSequenceStorage(), castToInt.execute(times));
300300
return factory().createBytes(res);
301301
}

0 commit comments

Comments
 (0)