test/langtools/lib/annotations/annotations/classfile/ClassfileInspector.java
changeset 50735 2f2af62dfac7
parent 47216 71c04702a3d5
--- a/test/langtools/lib/annotations/annotations/classfile/ClassfileInspector.java	Fri Jun 22 17:49:21 2018 -0700
+++ b/test/langtools/lib/annotations/annotations/classfile/ClassfileInspector.java	Sat Jun 23 01:32:41 2018 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2018, 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
@@ -1253,6 +1253,11 @@
         }
 
         @Override
+          public Void visitNestHost(NestHost_attribute attr, T p) {
+            return null;
+        }
+
+        @Override
         public Void visitMethodParameters(MethodParameters_attribute attr, T p) {
             return null;
         }
@@ -1288,6 +1293,11 @@
         }
 
         @Override
+        public Void visitNestMembers(NestMembers_attribute attr, T p) {
+            return null;
+        }
+
+        @Override
         public Void visitRuntimeInvisibleAnnotations(RuntimeInvisibleAnnotations_attribute attr, T p) {
             return null;
         }