--- old/src/java.desktop/macosx/classes/sun/font/CStrike.java 2018-08-09 18:20:52.000000000 -0700 +++ new/src/java.desktop/macosx/classes/sun/font/CStrike.java 2018-08-09 18:20:52.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 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 @@ -506,12 +506,6 @@ private SparseBitShiftingTwoLayerArray secondLayerCache; private HashMap generalCache; - // Empty non private constructor was added because access to this - // class shouldn't be emulated by a synthetic accessor method. - GlyphAdvanceCache() { - super(); - } - public synchronized float get(final int index) { if (index < 0) { if (-index < SECOND_LAYER_SIZE) { --- old/src/java.desktop/macosx/classes/sun/lwawt/LWButtonPeer.java 2018-08-09 18:20:54.000000000 -0700 +++ new/src/java.desktop/macosx/classes/sun/lwawt/LWButtonPeer.java 2018-08-09 18:20:54.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 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 @@ -81,12 +81,6 @@ @SuppressWarnings("serial")// Safe: outer class is non-serializable. private final class JButtonDelegate extends JButton { - // Empty non private constructor was added because access to this - // class shouldn't be emulated by a synthetic accessor method. - JButtonDelegate() { - super(); - } - @Override public boolean hasFocus() { return getTarget().hasFocus(); --- old/src/java.desktop/macosx/classes/sun/lwawt/LWChoicePeer.java 2018-08-09 18:20:56.000000000 -0700 +++ new/src/java.desktop/macosx/classes/sun/lwawt/LWChoicePeer.java 2018-08-09 18:20:55.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 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 @@ -135,12 +135,6 @@ @SuppressWarnings("serial")// Safe: outer class is non-serializable. private final class JComboBoxDelegate extends JComboBox { - // Empty non private constructor was added because access to this - // class shouldn't be emulated by a synthetic accessor method. - JComboBoxDelegate() { - super(); - } - @Override public boolean hasFocus() { return getTarget().hasFocus(); --- old/src/java.desktop/macosx/classes/sun/lwawt/LWComponentPeer.java 2018-08-09 18:20:57.000000000 -0700 +++ new/src/java.desktop/macosx/classes/sun/lwawt/LWComponentPeer.java 2018-08-09 18:20:57.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 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 @@ -159,12 +159,6 @@ enableEvents(0xFFFFFFFF); } - // Empty non private constructor was added because access to this - // class shouldn't be emulated by a synthetic accessor method. - DelegateContainer() { - super(); - } - @Override public boolean isLightweight() { return false; --- old/src/java.desktop/macosx/classes/sun/lwawt/LWTextAreaPeer.java 2018-08-09 18:20:59.000000000 -0700 +++ new/src/java.desktop/macosx/classes/sun/lwawt/LWTextAreaPeer.java 2018-08-09 18:20:59.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 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 @@ -219,12 +219,6 @@ private final class JTextAreaDelegate extends JTextArea { - // Empty non private constructor was added because access to this - // class shouldn't be emulated by a synthetic accessor method. - JTextAreaDelegate() { - super(); - } - @Override public void replaceSelection(String content) { getDocument().removeDocumentListener(LWTextAreaPeer.this); --- old/src/java.desktop/macosx/classes/sun/lwawt/LWTextFieldPeer.java 2018-08-09 18:21:00.000000000 -0700 +++ new/src/java.desktop/macosx/classes/sun/lwawt/LWTextFieldPeer.java 2018-08-09 18:21:00.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 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 @@ -122,12 +122,6 @@ @SuppressWarnings("serial")// Safe: outer class is non-serializable. private final class JPasswordFieldDelegate extends JPasswordField { - // Empty non private constructor was added because access to this - // class shouldn't be emulated by a synthetic accessor method. - JPasswordFieldDelegate() { - super(); - } - @Override public void replaceSelection(String content) { getDocument().removeDocumentListener(LWTextFieldPeer.this); --- old/src/java.desktop/share/classes/javax/swing/RepaintManager.java 2018-08-09 18:21:02.000000000 -0700 +++ new/src/java.desktop/share/classes/javax/swing/RepaintManager.java 2018-08-09 18:21:02.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 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 @@ -1814,12 +1814,6 @@ */ private static final class DisplayChangedHandler implements DisplayChangedListener { - // Empty non private constructor was added because access to this - // class shouldn't be generated by the compiler using synthetic - // accessor method - DisplayChangedHandler() { - } - public void displayChanged() { scheduleDisplayChanges(); }