Commit f40088a0 authored by Christian Schudt's avatar Christian Schudt

Call super method to prevent StackOverflowException.

parent 395612d0
...@@ -37,7 +37,7 @@ public class ByteFormat extends Format { ...@@ -37,7 +37,7 @@ public class ByteFormat extends Format {
* Formats a long which represent a number of bytes. * Formats a long which represent a number of bytes.
*/ */
public String format(long bytes) { public String format(long bytes) {
return format(bytes); return super.format(bytes);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment