HHH-12911 Removing unused field from org.hibernate.mapping.Collection
This commit is contained in:
parent
770ae50e8b
commit
f7b75e4c62
|
@ -39,7 +39,6 @@ public abstract class Collection implements Fetchable, Value, Filterable {
|
||||||
public static final String DEFAULT_KEY_COLUMN_NAME = "id";
|
public static final String DEFAULT_KEY_COLUMN_NAME = "id";
|
||||||
|
|
||||||
private final MetadataImplementor metadata;
|
private final MetadataImplementor metadata;
|
||||||
private MetadataBuildingContext buildingContext;
|
|
||||||
private PersistentClass owner;
|
private PersistentClass owner;
|
||||||
|
|
||||||
private KeyValue key;
|
private KeyValue key;
|
||||||
|
@ -91,7 +90,6 @@ public abstract class Collection implements Fetchable, Value, Filterable {
|
||||||
|
|
||||||
protected Collection(MetadataBuildingContext buildingContext, PersistentClass owner) {
|
protected Collection(MetadataBuildingContext buildingContext, PersistentClass owner) {
|
||||||
this(buildingContext.getMetadataCollector(), owner);
|
this(buildingContext.getMetadataCollector(), owner);
|
||||||
this.buildingContext = buildingContext;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue