Skip to content

Commit 04e1096

Browse files
authored
fix(java): apply sourcery suggestions (#361)
1 parent 7a677af commit 04e1096

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ignition-api/src/java/nio/file/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"FileStore",
1212
"FileSystemAlreadyExistsException",
1313
"FileSystemException",
14+
"FileSystemLoopException",
1415
"FileSystemNotFoundException",
1516
"FileVisitOption",
1617
"Files",

ignition-api/src/java/util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ def toInstant(self):
10271027
class ConcurrentModificationException(RuntimeException):
10281028
def __init__(self, message=None, cause=None):
10291029
# type: (Optional[str], Optional[Throwable]) -> None
1030-
super(ConcurrentModificationException, self).__init__(message)
1030+
super(ConcurrentModificationException, self).__init__(message, cause)
10311031

10321032

10331033
class Currency(Object):

0 commit comments

Comments
 (0)