Fix Line.isEmpty().

Closes #27.
This commit is contained in:
Michael Bayne
2017-11-16 10:57:59 -08:00
parent 3e2002ead7
commit b8fea743ee
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ public abstract class AbstractLine implements ILine
@Override // from interface IShape
public boolean isEmpty () {
return false;
return true;
}
@Override // from interface IShape
+1 -1
View File
@@ -89,7 +89,7 @@ public abstract class AbstractLine implements ILine
@Override // from interface IShape
public boolean isEmpty () {
return false;
return true;
}
@Override // from interface IShape