7011095: revert diamond changes from 6880112 that occur in method args
Reviewed-by: darcy, alanb
This commit is contained in:
parent
10467906c4
commit
259f06de38
jdk/src/share/classes
com/sun/java/util/jar/pack
java
@ -1704,7 +1704,7 @@ class BandStructure {
|
||||
for (int i = 0; i < ATTR_CONTEXT_LIMIT; i++) {
|
||||
assert(attrIndexLimit[i] == 0);
|
||||
attrIndexLimit[i] = 32; // just for the sake of predefs.
|
||||
attrDefs.set(i, new ArrayList<>(Collections.nCopies(
|
||||
attrDefs.set(i, new ArrayList<Attribute.Layout>(Collections.nCopies(
|
||||
attrIndexLimit[i], (Attribute.Layout)null)));
|
||||
|
||||
}
|
||||
|
@ -329,7 +329,7 @@ public class ObjectStreamClass implements Serializable {
|
||||
entry = th;
|
||||
}
|
||||
if (future.set(entry)) {
|
||||
Caches.localDescs.put(key, new SoftReference<>(entry));
|
||||
Caches.localDescs.put(key, new SoftReference<Object>(entry));
|
||||
} else {
|
||||
// nested lookup call already set future
|
||||
entry = future.get();
|
||||
@ -2118,7 +2118,7 @@ public class ObjectStreamClass implements Serializable {
|
||||
entry = th;
|
||||
}
|
||||
future.set(entry);
|
||||
Caches.reflectors.put(key, new SoftReference<>(entry));
|
||||
Caches.reflectors.put(key, new SoftReference<Object>(entry));
|
||||
}
|
||||
|
||||
if (entry instanceof FieldReflector) {
|
||||
|
@ -67,7 +67,7 @@ class StringCoding {
|
||||
}
|
||||
|
||||
private static <T> void set(ThreadLocal<SoftReference<T>> tl, T ob) {
|
||||
tl.set(new SoftReference<>(ob));
|
||||
tl.set(new SoftReference<T>(ob));
|
||||
}
|
||||
|
||||
// Trim the given byte array to the given length
|
||||
|
@ -1426,7 +1426,7 @@ public class Logger {
|
||||
// we didn't have a previous parent
|
||||
ref = manager.new LoggerWeakRef(this);
|
||||
}
|
||||
ref.setParentRef(new WeakReference<>(parent));
|
||||
ref.setParentRef(new WeakReference<Logger>(parent));
|
||||
parent.kids.add(ref);
|
||||
|
||||
// As a result of the reparenting, the effective level
|
||||
|
Loading…
x
Reference in New Issue
Block a user