Skip to content

Commit f4b351e

Browse files
committed
Make method static.
1 parent 836a819 commit f4b351e

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/str

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/str/StringBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,7 @@ public String doString(String self, Object width,
15641564
return recursiveNode.executeObject(self, widthCast.execute(width));
15651565
}
15661566

1567-
private String zfill(String self, int width) {
1567+
private static String zfill(String self, int width) {
15681568
int len = self.length();
15691569
if (len >= width) {
15701570
return self;

0 commit comments

Comments
 (0)