浏览代码

Avoid an NPE that says nothing (ex. could happen if the message template is wrong).

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ProcessingFeedback@634712 13f79535-47bb-0310-9956-ffa450edef68
Temp_ProcessingFeedback
Jeremias Maerki 16 年前
父节点
当前提交
4e8c727986
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/java/org/apache/fop/util/text/AdvancedMessageFormat.java

+ 1
- 1
src/java/org/apache/fop/util/text/AdvancedMessageFormat.java 查看文件

@@ -273,7 +273,7 @@ public class AdvancedMessageFormat {
}
}
if (!handled) {
target.append(obj.toString());
target.append(String.valueOf(obj));
}
}
}

正在加载...
取消
保存