# HG changeset patch # User darcy # Date 1391279275 28800 # Node ID ca4dc1b04ef35e3e25357d84651be8e68ac43190 # Parent c9ef7086f8ffb4f2366594a3fbbb2274c4d31934 8033223: Fix serial lint warnings in sun.{font, java2d[.*]} Reviewed-by: bae diff -r c9ef7086f8ff -r ca4dc1b04ef3 jdk/src/share/classes/com/sun/imageio/plugins/common/BogusColorSpace.java --- a/jdk/src/share/classes/com/sun/imageio/plugins/common/BogusColorSpace.java Fri Jan 31 13:42:31 2014 -0500 +++ b/jdk/src/share/classes/com/sun/imageio/plugins/common/BogusColorSpace.java Sat Feb 01 10:27:55 2014 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 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 @@ -31,6 +31,7 @@ * A dummy ColorSpace to enable ColorModel * for image data which do not have an innate color representation. */ +@SuppressWarnings("serial") // JDK-implementation class public class BogusColorSpace extends ColorSpace { /** * Return the type given the number of components. diff -r c9ef7086f8ff -r ca4dc1b04ef3 jdk/src/share/classes/com/sun/imageio/plugins/jpeg/JFIFMarkerSegment.java --- a/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/JFIFMarkerSegment.java Fri Jan 31 13:42:31 2014 -0500 +++ b/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/JFIFMarkerSegment.java Sat Feb 01 10:27:55 2014 -0800 @@ -558,6 +558,7 @@ // Could put reason codes in here to be parsed in writeJFXXSegment // in order to provide more meaningful warnings. + @SuppressWarnings("serial") // JDK-implementation class private class IllegalThumbException extends Exception {} /** diff -r c9ef7086f8ff -r ca4dc1b04ef3 jdk/src/share/classes/sun/font/FontScalerException.java --- a/jdk/src/share/classes/sun/font/FontScalerException.java Fri Jan 31 13:42:31 2014 -0500 +++ b/jdk/src/share/classes/sun/font/FontScalerException.java Sat Feb 01 10:27:55 2014 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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 @@ -25,6 +25,7 @@ package sun.font; +@SuppressWarnings("serial") // JDK-implementation class public class FontScalerException extends Exception { public FontScalerException() { super("Font scaler encountered runtime problem."); diff -r c9ef7086f8ff -r ca4dc1b04ef3 jdk/src/share/classes/sun/java2d/InvalidPipeException.java --- a/jdk/src/share/classes/sun/java2d/InvalidPipeException.java Fri Jan 31 13:42:31 2014 -0500 +++ b/jdk/src/share/classes/sun/java2d/InvalidPipeException.java Sat Feb 01 10:27:55 2014 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -34,6 +34,7 @@ * windows which toggle the need to use platform graphics or direct * graphics access. */ +@SuppressWarnings("serial") // JDK-implementation class public class InvalidPipeException extends IllegalStateException { /** * Constructs an InvalidPipeException with no detail message. diff -r c9ef7086f8ff -r ca4dc1b04ef3 jdk/src/share/classes/sun/java2d/cmm/lcms/LCMSImageLayout.java --- a/jdk/src/share/classes/sun/java2d/cmm/lcms/LCMSImageLayout.java Fri Jan 31 13:42:31 2014 -0500 +++ b/jdk/src/share/classes/sun/java2d/cmm/lcms/LCMSImageLayout.java Sat Feb 01 10:27:55 2014 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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 @@ -376,6 +376,7 @@ return (int)res; } + @SuppressWarnings("serial") // JDK-implementation class public static class ImageLayoutException extends Exception { public ImageLayoutException(String message) { super(message);