From: Dominik Stadler Date: Tue, 26 Sep 2017 12:31:51 +0000 (+0000) Subject: Fixup change for CellReference to keep the behavior the same as before X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=991fba37a260190836affe4d2acb9d131aeb3555;p=poi.git Fixup change for CellReference to keep the behavior the same as before git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1809737 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java b/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java index c52d4c8baf..bc210b9cfe 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java @@ -125,7 +125,7 @@ public final class HSSFPatriarch implements HSSFShapeContainer, Drawing coordinates = new HashSet<>(tailRecords.size()); for(NoteRecord rec : tailRecords.values()){ String noteRef = new CellReference(rec.getRow(), - rec.getColumn()).formatAsString(); // A1-style notation + rec.getColumn(), true, true).formatAsString(); // A1-style notation if(coordinates.contains(noteRef )){ throw new IllegalStateException("found multiple cell comments for cell " + noteRef ); } else {