File tree 2 files changed +29
-11
lines changed
src/jdk.jfr/share/classes/jdk/jfr/internal/tool
2 files changed +29
-11
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2016, 2019 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2016, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
37
37
import jdk .jfr .DataAmount ;
38
38
import jdk .jfr .Frequency ;
39
39
import jdk .jfr .MemoryAddress ;
40
+ import jdk .jfr .Name ;
40
41
import jdk .jfr .Percentage ;
41
42
import jdk .jfr .ValueDescriptor ;
42
43
import jdk .jfr .consumer .RecordedClass ;
@@ -143,15 +144,17 @@ private void printCommentRef(int commentIndex, long typeId) {
143
144
144
145
private void printAnnotations (int commentIndex , List <AnnotationElement > annotations ) {
145
146
for (AnnotationElement a : annotations ) {
146
- printIndent ();
147
- print ("@" );
148
- print (makeSimpleType (a .getTypeName ()));
149
- List <ValueDescriptor > vs = a .getValueDescriptors ();
150
- if (!vs .isEmpty ()) {
151
- printAnnotation (a );
152
- printCommentRef (commentIndex , a .getTypeId ());
153
- } else {
154
- println ();
147
+ if (!Name .class .getName ().equals (a .getTypeName ())) {
148
+ printIndent ();
149
+ print ("@" );
150
+ print (makeSimpleType (a .getTypeName ()));
151
+ List <ValueDescriptor > vs = a .getValueDescriptors ();
152
+ if (!vs .isEmpty ()) {
153
+ printAnnotation (a );
154
+ printCommentRef (commentIndex , a .getTypeId ());
155
+ } else {
156
+ println ();
157
+ }
155
158
}
156
159
}
157
160
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
26
26
package jdk .jfr .tool ;
27
27
28
28
import java .nio .file .Path ;
29
+ import java .util .HashSet ;
30
+ import java .util .Set ;
29
31
30
32
import jdk .jfr .EventType ;
31
33
import jdk .jfr .consumer .RecordingFile ;
@@ -59,5 +61,18 @@ public static void main(String[] args) throws Throwable {
59
61
output .shouldContain (name );
60
62
}
61
63
}
64
+ Set <String > annotations = new HashSet <>();
65
+ int lineNumber = 1 ;
66
+ for (String line : output .asLines ()) {
67
+ if (line .startsWith ("@" )) {
68
+ if (annotations .contains (line )) {
69
+ throw new Exception ("Line " + lineNumber + ":" + line + " repeats annotation" );
70
+ }
71
+ annotations .add (line );
72
+ } else {
73
+ annotations .clear ();
74
+ }
75
+ lineNumber ++;
76
+ }
62
77
}
63
78
}
You can’t perform that action at this time.
0 commit comments