--- old/src/share/classes/javax/swing/plaf/nimbus/DerivedColor.java 2014-02-12 23:37:42.000000000 -0800 +++ new/src/share/classes/javax/swing/plaf/nimbus/DerivedColor.java 2014-02-12 23:37:41.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2014, 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 @@ -39,6 +39,8 @@ * @author Jasper Potts */ class DerivedColor extends Color { + private static final long serialVersionUID = 2943692070465976766L; + private final String uiDefaultParentName; private final float hOffset, sOffset, bOffset; private final int aOffset; @@ -174,6 +176,8 @@ } static class UIResource extends DerivedColor implements javax.swing.plaf.UIResource { + private static final long serialVersionUID = -6075249163281010835L; + UIResource(String uiDefaultParentName, float hOffset, float sOffset, float bOffset, int aOffset) { super(uiDefaultParentName, hOffset, sOffset, bOffset, aOffset);