aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/ss/util/CellUtil.java
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2017-03-02 18:47:28 +0000
committerJaven O'Neal <onealj@apache.org>2017-03-02 18:47:28 +0000
commit0469fee078bab31748f2929f475f1a7533c9be2e (patch)
tree70f4b83dd094c43d636bcb3554c2c84ae6bd5a9e /src/java/org/apache/poi/ss/util/CellUtil.java
parentb8905bdd748fcd181e4b79bcfeb7120fdd41d6b9 (diff)
downloadpoi-0469fee078bab31748f2929f475f1a7533c9be2e.tar.gz
poi-0469fee078bab31748f2929f475f1a7533c9be2e.zip
bug 60787: remove calls to System.out.println. Thanks to Kamile Demirel.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1785185 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ss/util/CellUtil.java')
-rw-r--r--src/java/org/apache/poi/ss/util/CellUtil.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/java/org/apache/poi/ss/util/CellUtil.java b/src/java/org/apache/poi/ss/util/CellUtil.java
index 3dad83aab6..c35cba4050 100644
--- a/src/java/org/apache/poi/ss/util/CellUtil.java
+++ b/src/java/org/apache/poi/ss/util/CellUtil.java
@@ -522,7 +522,6 @@ public final class CellUtil {
log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map uses Short values for "
+ name + ". Should use BorderStyle enums instead.");
}
- System.out.println("BorderStyle short usage");
short code = ((Short) value).shortValue();
border = BorderStyle.valueOf(code);
}
@@ -555,7 +554,6 @@ public final class CellUtil {
log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map uses Short values for "
+ name + ". Should use FillPatternType enums instead.");
}
- System.out.println("FillPatternType short usage");
short code = ((Short) value).shortValue();
pattern = FillPatternType.forInt(code);
}
@@ -588,7 +586,6 @@ public final class CellUtil {
log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map used a Short value for "
+ name + ". Should use HorizontalAlignment enums instead.");
}
- System.out.println("HorizontalAlignment short usage");
short code = ((Short) value).shortValue();
align = HorizontalAlignment.forInt(code);
}
@@ -621,7 +618,6 @@ public final class CellUtil {
log.log(POILogger.WARN, "Deprecation warning: CellUtil properties map used a Short value for "
+ name + ". Should use VerticalAlignment enums instead.");
}
- System.out.println("VerticalAlignment usage " + name + " " + value);
short code = ((Short) value).shortValue();
align = VerticalAlignment.forInt(code);
}