--- old/src/jdk.rmic/share/classes/sun/tools/java/ClassDefinition.java 2019-08-15 14:44:19.000000000 +0200 +++ new/src/jdk.rmic/share/classes/sun/tools/java/ClassDefinition.java 2019-08-15 14:44:18.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1994, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1994, 2019, 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 @@ -224,7 +224,7 @@ /** * Get the class' interfaces */ - public final ClassDeclaration getInterfaces()[] { + public final ClassDeclaration[] getInterfaces() { if (interfaces == null) throw new CompilerError("getInterfaces"); return interfaces; }