< prev index next >

src/java.base/share/classes/sun/text/normalizer/Norm2AllModes.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2018 Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -192,11 +192,11 @@
         public int spanQuickCheckYes(CharSequence s) {
             return impl.decompose(s, 0, s.length(), null);
         }
 
         @Override
-        public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundary(c, true); }
+        public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundaryBefore(c); }
     }
 
     public static final class ComposeNormalizer2 extends Normalizer2WithImpl {
         public ComposeNormalizer2(NormalizerImpl ni, boolean fcc) {
             super(ni);
< prev index next >