mirror of https://github.com/apache/poi.git
whitespace (tabs to spaces)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7e7b5b09c2
commit
a1156bc7ba
|
@ -51,12 +51,9 @@ public final class CellRangeUtil {
|
|||
int firstCol = crB.getFirstColumn();
|
||||
int lastCol = crB.getLastColumn();
|
||||
|
||||
if
|
||||
(
|
||||
gt(crA.getFirstRow(),lastRow) ||
|
||||
lt(crA.getLastRow(),firstRow) ||
|
||||
gt(crA.getFirstColumn(),lastCol) ||
|
||||
lt(crA.getLastColumn(),firstCol)
|
||||
if (
|
||||
gt(crA.getFirstRow(), lastRow) || lt(crA.getLastRow(), firstRow) ||
|
||||
gt(crA.getFirstColumn(), lastCol) || lt(crA.getLastColumn(), firstCol)
|
||||
)
|
||||
{
|
||||
return NO_INTERSECTION;
|
||||
|
|
Loading…
Reference in New Issue