--- old/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/FastInfosetReflection.java 2015-10-16 12:58:33.000000000 +0200 +++ new/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/FastInfosetReflection.java 2015-10-16 12:58:33.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2012, 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 @@ -44,7 +44,7 @@ /** * FI DOMDocumentParser constructor using reflection. */ - static Constructor fiDOMDocumentParser_new; + static Constructor fiDOMDocumentParser_new; /** * FI DOMDocumentParser.parse() method via reflection. @@ -54,7 +54,7 @@ /** * FI DOMDocumentSerializer constructor using reflection. */ - static Constructor fiDOMDocumentSerializer_new; + static Constructor fiDOMDocumentSerializer_new; /** * FI FastInfosetSource.serialize(Document) method via reflection. @@ -69,12 +69,12 @@ /** * FI FastInfosetSource constructor using reflection. */ - static Class fiFastInfosetSource_class; + static Class fiFastInfosetSource_class; /** * FI FastInfosetSource constructor using reflection. */ - static Constructor fiFastInfosetSource_new; + static Constructor fiFastInfosetSource_new; /** * FI FastInfosetSource.getInputStream() method via reflection. @@ -89,7 +89,7 @@ /** * FI FastInfosetResult constructor using reflection. */ - static Constructor fiFastInfosetResult_new; + static Constructor fiFastInfosetResult_new; /** * FI FastInfosetResult.getOutputSTream() method via reflection. @@ -98,7 +98,7 @@ static { try { - Class clazz = Class.forName("com.sun.xml.internal.fastinfoset.dom.DOMDocumentParser"); + Class clazz = Class.forName("com.sun.xml.internal.fastinfoset.dom.DOMDocumentParser"); fiDOMDocumentParser_new = clazz.getConstructor((Class[]) null); fiDOMDocumentParser_parse = clazz.getMethod("parse", new Class[] { org.w3c.dom.Document.class, java.io.InputStream.class }); @@ -179,7 +179,7 @@ "com.sun.xml.internal.org.jvnet.fastinfoset.FastInfosetSource"); } - public static Class getFastInfosetSource_class() { + public static Class getFastInfosetSource_class() { if (fiFastInfosetSource_class == null) { throw new RuntimeException("Unable to locate Fast Infoset implementation"); }