8216322: Missing since information in deprecation of constructor visitors

Reviewed-by: vromero
This commit is contained in:
Joe Darcy 2019-01-08 16:26:46 -08:00
parent e19bb15389
commit ee4f45eb70
9 changed files with 24 additions and 24 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -68,7 +68,7 @@ public abstract class AbstractAnnotationValueVisitor7<R, P> extends AbstractAnno
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected AbstractAnnotationValueVisitor7() {
super(); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oacle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 2019, Oacle 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
@ -71,7 +71,7 @@ public abstract class AbstractElementVisitor7<R, P> extends AbstractElementVisit
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected AbstractElementVisitor7(){
super(); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -71,7 +71,7 @@ public abstract class AbstractTypeVisitor7<R, P> extends AbstractTypeVisitor6<R,
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected AbstractTypeVisitor7() {
super(); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -85,7 +85,7 @@ public class ElementKindVisitor7<R, P> extends ElementKindVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected ElementKindVisitor7() {
super(null); // Superclass constructor deprecated too
}
@ -99,7 +99,7 @@ public class ElementKindVisitor7<R, P> extends ElementKindVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected ElementKindVisitor7(R defaultValue) {
super(defaultValue); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -98,7 +98,7 @@ public class ElementScanner7<R, P> extends ElementScanner6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected ElementScanner7(){
super(null); // Superclass constructor deprecated too
}
@ -112,7 +112,7 @@ public class ElementScanner7<R, P> extends ElementScanner6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected ElementScanner7(R defaultValue){
super(defaultValue); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -75,7 +75,7 @@ public class SimpleAnnotationValueVisitor7<R, P> extends SimpleAnnotationValueVi
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected SimpleAnnotationValueVisitor7() {
super(null); // Superclass constructor deprecated too
}
@ -89,7 +89,7 @@ public class SimpleAnnotationValueVisitor7<R, P> extends SimpleAnnotationValueVi
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected SimpleAnnotationValueVisitor7(R defaultValue) {
super(defaultValue); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -81,7 +81,7 @@ public class SimpleElementVisitor7<R, P> extends SimpleElementVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected SimpleElementVisitor7(){
super(null); // Superclass constructor deprecated too
}
@ -95,7 +95,7 @@ public class SimpleElementVisitor7<R, P> extends SimpleElementVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected SimpleElementVisitor7(R defaultValue){
super(defaultValue); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -81,7 +81,7 @@ public class SimpleTypeVisitor7<R, P> extends SimpleTypeVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected SimpleTypeVisitor7(){
super(null); // Superclass constructor deprecated too
}
@ -95,7 +95,7 @@ public class SimpleTypeVisitor7<R, P> extends SimpleTypeVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected SimpleTypeVisitor7(R defaultValue){
super(defaultValue); // Superclass constructor deprecated too
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
@ -82,7 +82,7 @@ public class TypeKindVisitor7<R, P> extends TypeKindVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected TypeKindVisitor7() {
super(null); // Superclass constructor deprecated too
}
@ -96,7 +96,7 @@ public class TypeKindVisitor7<R, P> extends TypeKindVisitor6<R, P> {
* @deprecated Release 7 is obsolete; update to a visitor for a newer
* release level.
*/
@Deprecated
@Deprecated(since="12")
protected TypeKindVisitor7(R defaultValue) {
super(defaultValue); // Superclass constructor deprecated too
}