Skip to content

Commit 2d18dda

Browse files
committedSep 1, 2022
8173605: Remove support for source and target 1.7 option in javac
Reviewed-by: vromero
1 parent 7c2f299 commit 2d18dda

File tree

156 files changed

+182
-4570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+182
-4570
lines changed
 

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

+3-14
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ private Source(String name) {
163163
this.name = name;
164164
}
165165

166-
public static final Source MIN = Source.JDK7;
166+
public static final Source MIN = Source.JDK8;
167167

168168
private static final Source MAX = values()[values().length - 1];
169169

@@ -207,26 +207,15 @@ public Target requiredTarget() {
207207
*/
208208
public enum Feature {
209209

210-
DIAMOND(JDK7, Fragments.FeatureDiamond, DiagKind.NORMAL),
210+
DIAMOND(MIN, Fragments.FeatureDiamond, DiagKind.NORMAL), // Used in Analyzer
211211
MODULES(JDK9, Fragments.FeatureModules, DiagKind.PLURAL),
212212
EFFECTIVELY_FINAL_VARIABLES_IN_TRY_WITH_RESOURCES(JDK9, Fragments.FeatureVarInTryWithResources, DiagKind.PLURAL),
213213
DEPRECATION_ON_IMPORT(MIN, JDK8),
214214
POLY(JDK8),
215215
LAMBDA(JDK8, Fragments.FeatureLambda, DiagKind.PLURAL),
216-
METHOD_REFERENCES(JDK8, Fragments.FeatureMethodReferences, DiagKind.PLURAL),
217216
DEFAULT_METHODS(JDK8, Fragments.FeatureDefaultMethods, DiagKind.PLURAL),
218-
STATIC_INTERFACE_METHODS(JDK8, Fragments.FeatureStaticIntfMethods, DiagKind.PLURAL),
219-
STATIC_INTERFACE_METHODS_INVOKE(JDK8, Fragments.FeatureStaticIntfMethodInvoke, DiagKind.PLURAL),
220217
STRICT_METHOD_CLASH_CHECK(JDK8),
221-
EFFECTIVELY_FINAL_IN_INNER_CLASSES(JDK8),
222-
TYPE_ANNOTATIONS(JDK8, Fragments.FeatureTypeAnnotations, DiagKind.PLURAL),
223-
ANNOTATIONS_AFTER_TYPE_PARAMS(JDK8, Fragments.FeatureAnnotationsAfterTypeParams, DiagKind.PLURAL),
224-
REPEATED_ANNOTATIONS(JDK8, Fragments.FeatureRepeatableAnnotations, DiagKind.PLURAL),
225-
INTERSECTION_TYPES_IN_CAST(JDK8, Fragments.FeatureIntersectionTypesInCast, DiagKind.PLURAL),
226-
GRAPH_INFERENCE(JDK8),
227-
FUNCTIONAL_INTERFACE_MOST_SPECIFIC(JDK8),
228-
POST_APPLICABILITY_VARARGS_ACCESS_CHECK(JDK8),
229-
MAP_CAPTURES_TO_BOUNDS(MIN, JDK7),
218+
GRAPH_INFERENCE(JDK8), // Used in Analyzer
230219
PRIVATE_SAFE_VARARGS(JDK9),
231220
DIAMOND_WITH_ANONYMOUS_CLASS_CREATION(JDK9, Fragments.FeatureDiamondAndAnonClass, DiagKind.NORMAL),
232221
UNDERSCORE_IDENTIFIER(MIN, JDK8),

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

+1-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2022, 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
@@ -2125,21 +2125,6 @@ public void setBounds(InferenceBound ib, List<Type> newBounds) {
21252125

21262126
/** add a bound of a given kind - this might trigger listener notification */
21272127
public final void addBound(InferenceBound ib, Type bound, Types types) {
2128-
// Per JDK-8075793: in pre-8 sources, follow legacy javac behavior
2129-
// when capture variables are inferred as bounds: for lower bounds,
2130-
// map to the capture variable's upper bound; for upper bounds,
2131-
// if the capture variable has a lower bound, map to that type
2132-
if (types.mapCapturesToBounds) {
2133-
switch (ib) {
2134-
case LOWER:
2135-
bound = types.cvarUpperBound(bound);
2136-
break;
2137-
case UPPER:
2138-
Type altBound = types.cvarLowerBound(bound);
2139-
if (!altBound.hasTag(TypeTag.BOT)) bound = altBound;
2140-
break;
2141-
}
2142-
}
21432128
addBound(ib, bound, types, false);
21442129
}
21452130

0 commit comments

Comments
 (0)
Please sign in to comment.