Merge remote-tracking branch 'origin/1.18' into 1.19.2

This commit is contained in:
embeddedt 2023-04-13 13:27:12 -04:00
commit 05dde993fd
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -49,8 +49,9 @@ public class FastAccessTransformerList extends AccessTransformerList {
private final Set<Type> allContainedTypes;
public FastATMap(Map<Target<?>, AccessTransformer> delegate) {
this.delegate = delegate;
this.delegate = new HashMap<>();
this.allContainedTypes = new ObjectOpenHashSet<>();
this.putAll(delegate);
}
@Override