fixed collision
This commit is contained in:
@@ -15,16 +15,13 @@ public abstract class DimLink
|
|||||||
|
|
||||||
protected DimLink(Point4D source, DimLink parent, int orientation)
|
protected DimLink(Point4D source, DimLink parent, int orientation)
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
this.orientation=orientation;
|
|
||||||
=======
|
|
||||||
if (parent.source.getDimension() != source.getDimension())
|
if (parent.source.getDimension() != source.getDimension())
|
||||||
{
|
{
|
||||||
// Ban having children in other dimensions to avoid serialization issues with cross-dimensional tails
|
// Ban having children in other dimensions to avoid serialization issues with cross-dimensional tails
|
||||||
throw new IllegalArgumentException("source and parent.source must have the same dimension.");
|
throw new IllegalArgumentException("source and parent.source must have the same dimension.");
|
||||||
}
|
}
|
||||||
|
|
||||||
>>>>>>> 25446453cba6f491cc0745803f448dd000d453cc
|
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
this.source = source;
|
this.source = source;
|
||||||
this.tail = parent.tail;
|
this.tail = parent.tail;
|
||||||
|
|||||||
Reference in New Issue
Block a user