Skip to content

Commit 300a39f

Browse files
committed
Revert files to OpenJDK head if they lack user-visible types.
1 parent 2941b2e commit 300a39f

File tree

38 files changed

+38
-189
lines changed

38 files changed

+38
-189
lines changed

src/java.base/share/classes/java/lang/AssertionStatusDirectives.java

-4
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525

2626
package java.lang;
2727

28-
import org.jspecify.annotations.NullMarked;
29-
import org.jspecify.annotations.Nullable;
30-
3128
/**
3229
* A collection of assertion status directives (such as "enable assertions
3330
* in package p" or "disable assertions in class c"). This class is used by
@@ -38,7 +35,6 @@
3835
* @since 1.4
3936
* @author Josh Bloch
4037
*/
41-
@NullMarked
4238
class AssertionStatusDirectives {
4339
/**
4440
* The classes for which assertions are to be enabled or disabled.

src/java.base/share/classes/java/lang/Shutdown.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package java.lang;
2727

28-
import org.jspecify.annotations.NullMarked;
29-
import org.jspecify.annotations.Nullable;
3028

3129
import jdk.internal.misc.VM;
3230

@@ -42,8 +40,7 @@
4240
* @see java.io.DeleteOnExitHook
4341
*/
4442

45-
@NullMarked
46-
class Shutdown {
43+
class Shutdown {
4744

4845
// The system shutdown hooks are registered with a predefined slot.
4946
// The list of shutdown hooks is as follows:
@@ -52,7 +49,7 @@ class Shutdown {
5249
// shutdown hooks and waits until they finish
5350
// (2) DeleteOnExit hook
5451
private static final int MAX_SYSTEM_HOOKS = 10;
55-
private static final @Nullable Runnable[] hooks = new Runnable[MAX_SYSTEM_HOOKS];
52+
private static final Runnable[] hooks = new Runnable[MAX_SYSTEM_HOOKS];
5653

5754
// the index of the currently running shutdown hook to the hooks array
5855
private static int currentRunningHook = -1;

src/java.base/share/classes/java/text/DigitList.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838

3939
package java.text;
4040

41-
import org.jspecify.annotations.Nullable;
42-
4341
import java.math.BigDecimal;
4442
import java.math.BigInteger;
4543
import java.math.RoundingMode;
@@ -690,9 +688,7 @@ final void set(boolean isNegative, BigInteger source, int maximumDigits) {
690688
/**
691689
* equality test between two digit lists.
692690
*/
693-
694-
695-
public boolean equals(@Nullable Object obj) {
691+
public boolean equals(Object obj) {
696692
if (this == obj) // quick check
697693
return true;
698694
if (!(obj instanceof DigitList other)) // (1) same object?

src/java.base/share/classes/java/text/PatternEntry.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838

3939
package java.text;
4040

41-
import org.jspecify.annotations.Nullable;
42-
4341
import java.lang.Character;
4442

4543
/**
@@ -70,9 +68,7 @@ private void appendQuotedChars(StringBuilder toAddTo) {
7068
* Because Vector.indexOf doesn't take a comparator,
7169
* this method is ill-defined and ignores strength.
7270
*/
73-
74-
75-
public boolean equals(@Nullable Object obj) {
71+
public boolean equals(Object obj) {
7672
if (obj == null) return false;
7773
PatternEntry other = (PatternEntry) obj;
7874
boolean result = chars.equals(other.chars);

src/java.base/share/classes/java/text/RuleBasedCollationKey.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838

3939
package java.text;
4040

41-
import org.jspecify.annotations.Nullable;
42-
4341
/**
4442
* A RuleBasedCollationKey is a concrete implementation of CollationKey class.
4543
* The RuleBasedCollationKey class is used by the RuleBasedCollator class.
@@ -74,9 +72,7 @@ else if (result >= Collator.GREATER)
7472
* @param target the RuleBasedCollationKey to compare to.
7573
* @return Returns true if two objects are equal, false otherwise.
7674
*/
77-
78-
79-
public boolean equals(@Nullable Object target) {
75+
public boolean equals(Object target) {
8076
if (this == target) return true;
8177
if (target == null || !getClass().equals(target.getClass())) {
8278
return false;

src/java.base/share/classes/java/time/chrono/ChronoLocalDateTimeImpl.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@
6161
*/
6262
package java.time.chrono;
6363

64-
import org.jspecify.annotations.Nullable;
65-
6664
import static java.time.temporal.ChronoField.EPOCH_DAY;
6765

6866
import java.io.IOException;
@@ -435,9 +433,7 @@ static ChronoLocalDateTime<?> readExternal(ObjectInput in) throws IOException, C
435433

436434
//-----------------------------------------------------------------------
437435
@Override
438-
439-
440-
public boolean equals(@Nullable Object obj) {
436+
public boolean equals(Object obj) {
441437
if (this == obj) {
442438
return true;
443439
}

src/java.base/share/classes/java/time/chrono/ChronoPeriodImpl.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@
5656
*/
5757
package java.time.chrono;
5858

59-
import org.jspecify.annotations.Nullable;
60-
6159
import static java.time.temporal.ChronoField.MONTH_OF_YEAR;
6260
import static java.time.temporal.ChronoUnit.DAYS;
6361
import static java.time.temporal.ChronoUnit.MONTHS;
@@ -317,9 +315,7 @@ private void validateChrono(TemporalAccessor temporal) {
317315

318316
//-----------------------------------------------------------------------
319317
@Override
320-
321-
322-
public boolean equals(@Nullable Object obj) {
318+
public boolean equals(Object obj) {
323319
if (this == obj) {
324320
return true;
325321
}

src/java.base/share/classes/java/time/chrono/ChronoZonedDateTimeImpl.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@
6161
*/
6262
package java.time.chrono;
6363

64-
import org.jspecify.annotations.Nullable;
65-
6664
import static java.time.temporal.ChronoUnit.SECONDS;
6765

6866
import java.io.IOException;
@@ -367,9 +365,7 @@ static ChronoZonedDateTime<?> readExternal(ObjectInput in) throws IOException, C
367365

368366
//-------------------------------------------------------------------------
369367
@Override
370-
371-
372-
public boolean equals(@Nullable Object obj) {
368+
public boolean equals(Object obj) {
373369
if (this == obj) {
374370
return true;
375371
}

src/java.base/share/classes/java/util/JapaneseImperialCalendar.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package java.util;
2727

28-
import org.jspecify.annotations.Nullable;
29-
3028
import java.io.IOException;
3129
import java.io.ObjectInputStream;
3230
import sun.util.locale.provider.CalendarDataUtility;
@@ -383,9 +381,7 @@ public String getCalendarType() {
383381
* @see Calendar#compareTo(Calendar)
384382
*/
385383
@Override
386-
387-
388-
public boolean equals(@Nullable Object obj) {
384+
public boolean equals(Object obj) {
389385
return obj instanceof JapaneseImperialCalendar &&
390386
super.equals(obj);
391387
}

src/java.base/unix/classes/sun/nio/fs/UnixFileKey.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package sun.nio.fs;
2727

28-
import org.jspecify.annotations.Nullable;
29-
3028
/**
3129
* Container for device/inode to uniquely identify file.
3230
*/
@@ -47,9 +45,7 @@ public int hashCode() {
4745
}
4846

4947
@Override
50-
51-
52-
public boolean equals(@Nullable Object obj) {
48+
public boolean equals(Object obj) {
5349
if (obj == this)
5450
return true;
5551
return obj instanceof UnixFileKey other

src/java.datatransfer/share/classes/java/awt/datatransfer/MimeTypeParameterList.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package java.awt.datatransfer;
2727

28-
import org.jspecify.annotations.Nullable;
29-
3028
import java.util.Enumeration;
3129
import java.util.Hashtable;
3230
import java.util.Iterator;
@@ -76,9 +74,7 @@ public int hashCode() {
7674
* set of parameter names and associated values. The order of the parameters
7775
* is not considered.
7876
*/
79-
80-
81-
public boolean equals(@Nullable Object thatObject) {
77+
public boolean equals(Object thatObject) {
8278
//System.out.println("MimeTypeParameterList.equals("+this+","+thatObject+")");
8379
if (!(thatObject instanceof MimeTypeParameterList)) {
8480
return false;

src/java.desktop/share/classes/com/sun/beans/WildcardTypeImpl.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
*/
2525
package com.sun.beans;
2626

27-
import org.jspecify.annotations.Nullable;
28-
2927
import java.lang.reflect.Type;
3028
import java.lang.reflect.WildcardType;
3129
import java.util.Arrays;
@@ -104,9 +102,7 @@ public Type[] getLowerBounds() {
104102
* @see sun.reflect.generics.reflectiveObjects.WildcardTypeImpl#equals
105103
*/
106104
@Override
107-
108-
109-
public boolean equals(@Nullable Object object) {
105+
public boolean equals(Object object) {
110106
if (object instanceof WildcardType) {
111107
WildcardType type = (WildcardType) object;
112108
return Arrays.equals(this.upperBounds, type.getUpperBounds())

src/java.desktop/share/classes/com/sun/beans/finder/Signature.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
*/
2525
package com.sun.beans.finder;
2626

27-
import org.jspecify.annotations.Nullable;
28-
2927
/**
3028
* This class is designed to be a key of a cache
3129
* of constructors or methods.
@@ -85,9 +83,7 @@ Class<?>[] getArgs() {
8583
* @see #hashCode()
8684
*/
8785
@Override
88-
89-
90-
public boolean equals(@Nullable Object object) {
86+
public boolean equals(Object object) {
9187
if (this == object) {
9288
return true;
9389
}

src/java.desktop/share/classes/javax/swing/plaf/nimbus/DerivedColor.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
*/
2525
package javax.swing.plaf.nimbus;
2626

27-
import org.jspecify.annotations.Nullable;
28-
2927
import javax.swing.UIManager;
3028
import java.awt.Color;
3129
import java.beans.PropertyChangeSupport;
@@ -115,9 +113,7 @@ public void rederiveColor() {
115113
}
116114

117115
@Override
118-
119-
120-
public boolean equals(@Nullable Object o) {
116+
public boolean equals(Object o) {
121117
if (this == o) return true;
122118
if (!(o instanceof DerivedColor)) return false;
123119
DerivedColor that = (DerivedColor) o;

src/java.desktop/share/classes/sun/awt/im/InputMethodLocator.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package sun.awt.im;
2727

28-
import org.jspecify.annotations.Nullable;
29-
3028
import java.awt.AWTException;
3129
import java.awt.im.spi.InputMethodDescriptor;
3230
import java.util.Locale;
@@ -56,9 +54,7 @@ final class InputMethodLocator {
5654
this.locale = locale;
5755
}
5856

59-
60-
61-
public boolean equals(@Nullable Object other) {
57+
public boolean equals(Object other) {
6258
if (other == this) {
6359
return true;
6460
}

src/java.desktop/unix/classes/sun/awt/X11/WindowDimensions.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
*/
2525
package sun.awt.X11;
2626

27-
import org.jspecify.annotations.Nullable;
28-
2927
import java.awt.*;
3028

3129
class WindowDimensions {
@@ -166,9 +164,7 @@ public String toString() {
166164
return "[" + loc + ", " + size + "(" +(isClientSizeSet?"client":"bounds") + ")+" + insets + "]";
167165
}
168166

169-
170-
171-
public boolean equals(@Nullable Object o) {
167+
public boolean equals(Object o) {
172168
if (!(o instanceof WindowDimensions)) {
173169
return false;
174170
}

src/java.naming/share/classes/com/sun/jndi/ldap/ClientId.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package com.sun.jndi.ldap;
2727

28-
import org.jspecify.annotations.Nullable;
29-
3028
import java.util.Locale;
3129
import java.util.Arrays; // JDK 1.2
3230
import java.io.OutputStream;
@@ -117,9 +115,7 @@ class ClientId {
117115
+ (ctlHash=hashCodeControls(bindCtls));
118116
}
119117

120-
121-
122-
public boolean equals(@Nullable Object obj) {
118+
public boolean equals(Object obj) {
123119
if (!(obj instanceof ClientId)) {
124120
return false;
125121
}

src/java.naming/share/classes/com/sun/jndi/ldap/DigestClientId.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package com.sun.jndi.ldap;
2727

28-
import org.jspecify.annotations.Nullable;
29-
3028
import java.util.Arrays; // JDK 1.2
3129
import java.util.Hashtable;
3230

@@ -84,9 +82,7 @@ class DigestClientId extends SimpleClientId {
8482
myHash = super.hashCode() ^ Arrays.hashCode(propvals);
8583
}
8684

87-
88-
89-
public boolean equals(@Nullable Object obj) {
85+
public boolean equals(Object obj) {
9086
if (!(obj instanceof DigestClientId)) {
9187
return false;
9288
}

src/java.naming/share/classes/com/sun/jndi/ldap/NotifierArgs.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
package com.sun.jndi.ldap;
2727

28-
import org.jspecify.annotations.Nullable;
29-
3028
import javax.naming.directory.SearchControls;
3129
import javax.naming.event.*;
3230

@@ -80,9 +78,7 @@ final class NotifierArgs {
8078
}
8179

8280
// checks name, filter, controls
83-
84-
85-
public boolean equals(@Nullable Object obj) {
81+
public boolean equals(Object obj) {
8682
if (obj instanceof NotifierArgs) {
8783
NotifierArgs target = (NotifierArgs)obj;
8884
return mask == target.mask &&

0 commit comments

Comments
 (0)