--- old/src/java.base/share/classes/sun/text/normalizer/Norm2AllModes.java 2018-01-04 14:57:32.000000000 +0530 +++ new/src/java.base/share/classes/sun/text/normalizer/Norm2AllModes.java 2018-01-04 14:57:32.000000000 +0530 @@ -1,5 +1,5 @@ /* - * 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 @@ -194,7 +194,7 @@ } @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 {