From 1c5e38fe69ac8a6decbdd8abe93112f4e3369315 Mon Sep 17 00:00:00 2001 From: Joshua Rahm Date: Fri, 30 Jan 2015 17:11:48 -0700 Subject: added source --- src/utilities/NoFormatter.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/utilities/NoFormatter.java (limited to 'src/utilities/NoFormatter.java') diff --git a/src/utilities/NoFormatter.java b/src/utilities/NoFormatter.java new file mode 100644 index 0000000..9130700 --- /dev/null +++ b/src/utilities/NoFormatter.java @@ -0,0 +1,17 @@ +/* */ package utilities; +/* */ +/* */ public class NoFormatter extends DecimalFormatter +/* */ { +/* */ public NoFormatter(int radix) +/* */ { +/* 13 */ super(radix, true); +/* */ } +/* */ public String format(String str) { +/* 16 */ return str; +/* */ } +/* */ } + +/* Location: Modulus.jar + * Qualified Name: utilities.NoFormatter + * JD-Core Version: 0.6.2 + */ \ No newline at end of file -- cgit