ソースを参照

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));
}
}
}

読み込み中…
キャンセル
保存