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:
Sergey Vladimirov 2011-09-20 09:03:58 +00:00
parent 9b9c733a57
commit 99e8d7d7a0
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public final class BorderCode implements Cloneable {
public boolean isEmpty()
{
return _info == 0 && _info2 == 0;
return _info == 0 && _info2 == 0 || _info == -1;
}
public boolean equals(Object o)