aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/properties/StringProperty.java
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2005-11-14 12:55:46 +0000
committerJeremias Maerki <jeremias@apache.org>2005-11-14 12:55:46 +0000
commit18536029a6533a850dd1508f938b0ad20f1a0e72 (patch)
treece799e9527fc49e4bbb527c125920591b545c939 /src/java/org/apache/fop/fo/properties/StringProperty.java
parentf848d591de7458a04b111d243935b08bbd47c5fd (diff)
downloadxmlgraphics-fop-18536029a6533a850dd1508f938b0ad20f1a0e72.tar.gz
xmlgraphics-fop-18536029a6533a850dd1508f938b0ad20f1a0e72.zip
Updated from Jakarta Commons IO 1.0 to 1.1. CopyUtils.copy() becomes IOUtils.copy() again. CopyUtils in 1.0 was not ideal design decision.
Fixed most of the unappropriate System.err/System.out/Exception.printStackTrace(). Those that aren't fixed and are not legitimate calls (in main() methods etc.) are marked with a TODO item. Some Javadocs and style updates. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@344111 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/properties/StringProperty.java')
-rw-r--r--src/java/org/apache/fop/fo/properties/StringProperty.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/properties/StringProperty.java b/src/java/org/apache/fop/fo/properties/StringProperty.java
index 04e673e17..b5e6a4fd9 100644
--- a/src/java/org/apache/fop/fo/properties/StringProperty.java
+++ b/src/java/org/apache/fop/fo/properties/StringProperty.java
@@ -61,7 +61,7 @@ public class StringProperty extends Property {
if (value.charAt(vlen) == q1) {
return new StringProperty(value.substring(1, vlen));
}
- System.err.println("Warning String-valued property starts with quote"
+ log.warn("String-valued property starts with quote"
+ " but doesn't end with quote: "
+ value);
// fall through and use the entire value, including first quote
@@ -83,7 +83,7 @@ public class StringProperty extends Property {
*/
public StringProperty(String str) {
this.str = str;
- // System.err.println("Set StringProperty: " + str);
+ // log.debug("Set StringProperty: " + str);
}
/**