Skip to content

Commit 5ec1cdc

Browse files
author
Pavel Rappo
committedSep 25, 2021
8274321: Standardize values of @SInCE tags in javax.lang.model
Reviewed-by: darcy
1 parent 4838a2c commit 5ec1cdc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎src/java.compiler/share/classes/javax/lang/model/element/Element.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -292,7 +292,7 @@ public interface Element extends javax.lang.model.AnnotatedConstruct {
292292
* <p>Note that any annotations returned by this method are
293293
* declaration annotations.
294294
*
295-
* @since 8
295+
* @since 1.8
296296
*/
297297
@Override
298298
<A extends Annotation> A[] getAnnotationsByType(Class<A> annotationType);

‎src/java.compiler/share/classes/javax/lang/model/type/TypeMirror.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -149,7 +149,7 @@ public interface TypeMirror extends javax.lang.model.AnnotatedConstruct {
149149
* <p>Note that any annotations returned by this method are type
150150
* annotations.
151151
*
152-
* @since 8
152+
* @since 1.8
153153
*/
154154
@Override
155155
List<? extends AnnotationMirror> getAnnotationMirrors();
@@ -160,7 +160,7 @@ public interface TypeMirror extends javax.lang.model.AnnotatedConstruct {
160160
* <p>Note that any annotation returned by this method is a type
161161
* annotation.
162162
*
163-
* @since 8
163+
* @since 1.8
164164
*/
165165
@Override
166166
<A extends Annotation> A getAnnotation(Class<A> annotationType);
@@ -171,7 +171,7 @@ public interface TypeMirror extends javax.lang.model.AnnotatedConstruct {
171171
* <p>Note that any annotations returned by this method are type
172172
* annotations.
173173
*
174-
* @since 8
174+
* @since 1.8
175175
*/
176176
@Override
177177
<A extends Annotation> A[] getAnnotationsByType(Class<A> annotationType);

0 commit comments

Comments
 (0)
Please sign in to comment.