Explorar el Código

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 hace 16 años
padre
commit
4e8c727986
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/java/org/apache/fop/util/text/AdvancedMessageFormat.java

+ 1
- 1
src/java/org/apache/fop/util/text/AdvancedMessageFormat.java Ver fichero

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

Cargando…
Cancelar
Guardar