Skip to content

Commit f4634dc

Browse files
author
jlahoda
committedFeb 7, 2018
8194764: javac incorrectly flags deprecated for removal imports
Summary: Fixing source range for the Source.Feature.DEPRECATE_ON_IMPORT Reviewed-by: mcimadamore
1 parent 380f4a5 commit f4634dc

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/code/Source.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2018, 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
@@ -152,7 +152,7 @@ public enum Feature {
152152
BINARY_LITERALS(JDK7, Fragments.FeatureBinaryLit, DiagKind.PLURAL),
153153
UNDERSCORES_IN_LITERALS(JDK7, Fragments.FeatureUnderscoreLit, DiagKind.PLURAL),
154154
STRINGS_IN_SWITCH(JDK7, Fragments.FeatureStringSwitch, DiagKind.PLURAL),
155-
DEPRECATION_ON_IMPORT(MIN, JDK9),
155+
DEPRECATION_ON_IMPORT(MIN, JDK8),
156156
SIMPLIFIED_VARARGS(JDK7),
157157
OBJECT_TO_PRIMITIVE_CAST(JDK7),
158158
ENFORCE_THIS_DOT_INIT(JDK7),

‎test/langtools/tools/javac/warnings/Deprecation.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/**
22
* @test /nodynamiccopyright/
3-
* @bug 4986256 6598104 8032211
3+
* @bug 4986256 6598104 8032211 8194764
44
* @compile/ref=Deprecation.noLint.out -XDrawDiagnostics Deprecation.java
55
* @compile/ref=Deprecation.lintDeprecation.out -Xlint:deprecation -XDrawDiagnostics Deprecation.java
6+
* @compile/ref=Deprecation.lintDeprecation.out -Xlint:deprecation,-options -source 9 -XDrawDiagnostics Deprecation.java
67
* @compile/ref=Deprecation.lintDeprecation8.out -Xlint:deprecation,-options -source 8 -XDrawDiagnostics Deprecation.java
78
*/
89

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Deprecation.java:20:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
2-
Deprecation.java:57:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
1+
Deprecation.java:21:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
2+
Deprecation.java:58:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
33
2 warnings
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Deprecation.java:9:15: compiler.warn.has.been.deprecated: java.io.StringBufferInputStream, java.io
2-
Deprecation.java:20:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
3-
Deprecation.java:57:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
1+
Deprecation.java:10:15: compiler.warn.has.been.deprecated: java.io.StringBufferInputStream, java.io
2+
Deprecation.java:21:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
3+
Deprecation.java:58:24: compiler.warn.has.been.deprecated: Deprecation, compiler.misc.unnamed.package
44
3 warnings

0 commit comments

Comments
 (0)
Please sign in to comment.