Skip to content

Commit f4847af

Browse files
committed
fix style
1 parent 2c24c82 commit f4847af

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/set/SetNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/object/PythonObjectFactory.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -453,10 +453,6 @@ public PList createList(LazyPythonClass cls, Object[] array) {
453453
return trace(new PList(cls, SequenceStorageFactory.createStorage(array)));
454454
}
455455

456-
public PSet createSet() {
457-
return trace(new PSet(PythonBuiltinClassType.PSet));
458-
}
459-
460456
public PSet createSet(LazyPythonClass cls) {
461457
return trace(new PSet(cls));
462458
}

0 commit comments

Comments
 (0)