mirror of https://github.com/apache/poi.git
sometimes "-1" happens. It seems to be empty cell border as well
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1173039 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
59002dae0e
commit
b8b0ff6a27
|
@ -65,7 +65,7 @@ public final class BorderCode implements Cloneable {
|
||||||
|
|
||||||
public boolean isEmpty()
|
public boolean isEmpty()
|
||||||
{
|
{
|
||||||
return _info == 0 && _info2 == 0;
|
return _info == 0 && _info2 == 0 || _info == -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean equals(Object o)
|
public boolean equals(Object o)
|
||||||
|
|
Loading…
Reference in New Issue