Kaynağa Gözat

Bugfix: Potential multi-threading issue (ConcurrentModificationException) eliminated for ElementMapping classes.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@420805 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_93
Jeremias Maerki 18 yıl önce
ebeveyn
işleme
e94e9648f3

BIN
lib/xmlgraphics-commons-1.1-snapshot.jar Dosyayı Görüntüle


+ 2
- 2
src/java/org/apache/fop/fo/ElementMappingRegistry.java Dosyayı Görüntüle

*/ */
private void setupDefaultMappings() { private void setupDefaultMappings() {
// add mappings from available services // add mappings from available services
Iterator providers = Service.providers(ElementMapping.class);
Iterator providers = Service.providers(ElementMapping.class, false);
if (providers != null) { if (providers != null) {
while (providers.hasNext()) { while (providers.hasNext()) {
ElementMapping mapping = (ElementMapping)providers.next();
String mapping = (String)providers.next();
try { try {
addElementMapping(mapping); addElementMapping(mapping);
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {

+ 11
- 0
status.xml Dosyayı Görüntüle



<changes> <changes>
<release version="FOP Trunk"> <release version="FOP Trunk">
<action context="Code" dev="JM" type="fix">
Bugfix: Potential multi-threading issue (ConcurrentModificationException)
eliminated for ElementMapping classes.
</action>
<action context="Code" dev="JM" type="fix">
No more System.exit() and look &amp; feel setting calls inside the reusable
parts of the AWT viewer.
</action>
<action context="Code" dev="JM" type="fix">
Proper escaping of characters in list-items labels for RTF output.
</action>
<action context="Code" dev="MM" type="fix"> <action context="Code" dev="MM" type="fix">
Bugfix: FOUserAgent specific configuration parameters specified in config file Bugfix: FOUserAgent specific configuration parameters specified in config file
were not set when FOP was invoked from command line. were not set when FOP was invoked from command line.

Loading…
İptal
Kaydet