--- old/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/BIInterface.java 2016-09-26 02:15:54.832570374 +0300 +++ new/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/BIInterface.java 2016-09-26 02:15:54.744569066 +0300 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2016, 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 @@ -66,13 +66,13 @@ * Gets the names of interfaces/classes that implement * this interface. */ - public String[] members() { return members; } + public String[] members() { return members.clone(); } private final String[] fields; /** Gets the names of fields in this interface. */ - public String[] fields() { return fields; } + public String[] fields() { return fields.clone(); } /** Gets the location where this declaration is declared. */