diff options
| author | Joshua Rahm <joshua.rahm@colorado.edu> | 2015-01-30 17:11:48 -0700 |
|---|---|---|
| committer | Joshua Rahm <joshua.rahm@colorado.edu> | 2015-01-30 17:11:48 -0700 |
| commit | 1c5e38fe69ac8a6decbdd8abe93112f4e3369315 (patch) | |
| tree | 926cef8cb76d46862ed2c4ec7028720611e47476 /src/utilities/NoFormatter.java | |
| download | Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.gz Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.bz2 Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.zip | |
added source
Diffstat (limited to 'src/utilities/NoFormatter.java')
| -rw-r--r-- | src/utilities/NoFormatter.java | 17 |
1 files changed, 17 insertions, 0 deletions
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 |