diff options
author | Elliott Hughes <enh@google.com> | 2010-03-03 21:35:41 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-03-03 21:35:41 -0800 |
commit | 9720b13a5db722c4304d396f7ebf202b683ae5b8 (patch) | |
tree | 7d905dc19523645e1357054b1dab4a7d3a805459 /text | |
parent | 0385ab598bb740af0e25b229404b27532b825a3c (diff) | |
download | libcore-9720b13a5db722c4304d396f7ebf202b683ae5b8.zip libcore-9720b13a5db722c4304d396f7ebf202b683ae5b8.tar.gz libcore-9720b13a5db722c4304d396f7ebf202b683ae5b8.tar.bz2 |
Prevent java.text.Normalizer from getting a default constructor.
The dalvik continuous build's new jdiff run caught this.
Diffstat (limited to 'text')
-rw-r--r-- | text/src/main/java/java/text/Normalizer.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/text/src/main/java/java/text/Normalizer.java b/text/src/main/java/java/text/Normalizer.java index c395715..cc9819c 100644 --- a/text/src/main/java/java/text/Normalizer.java +++ b/text/src/main/java/java/text/Normalizer.java @@ -78,4 +78,6 @@ public final class Normalizer { public static String normalize(CharSequence src, Form form) { return NativeNormalizer.normalize(src, form); } + + private Normalizer() {} } |