Skip to content

Commit e8f0ff1

Browse files
committed
fix style
1 parent fcb0243 commit e8f0ff1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1729,6 +1729,7 @@ public HashingStorage doLeftEmpty(HashingStorage left, HashingStorage right,
17291729
}
17301730

17311731
@Specialization(limit = "MAX_STORAGES", guards = {"left.getClass() == leftClass", "right.getClass() == rightClass"})
1732+
@SuppressWarnings("try")
17321733
public HashingStorage doNonEmptyCached(VirtualFrame frame, HashingStorage left, HashingStorage right,
17331734
@Cached("left.getClass()") Class<? extends HashingStorage> leftClass,
17341735
@Cached("right.getClass()") Class<? extends HashingStorage> rightClass,

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/sequence/storage/BasicSequenceStorage.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) 2013, Regents of the University of California
44
*
55
* All rights reserved.

0 commit comments

Comments
 (0)