]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Bugfix: Potential multi-threading issue (ConcurrentModificationException) eliminated...
authorJeremias Maerki <jeremias@apache.org>
Tue, 11 Jul 2006 11:42:27 +0000 (11:42 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 11 Jul 2006 11:42:27 +0000 (11:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@420805 13f79535-47bb-0310-9956-ffa450edef68

lib/xmlgraphics-commons-1.1-snapshot.jar
src/java/org/apache/fop/fo/ElementMappingRegistry.java
status.xml

index 34c8f72d4d8e115ce43d3b92cbf775a9bfc923d2..ee849dbd39e75855b2abb9c4b3de288b2d51a3de 100644 (file)
Binary files a/lib/xmlgraphics-commons-1.1-snapshot.jar and b/lib/xmlgraphics-commons-1.1-snapshot.jar differ
index 2609b902d12cc88d54e984e3a63aa12b3aae000a..b91b489f9a34450e13559ae7eedf90bd0f9c26ac 100644 (file)
@@ -68,10 +68,10 @@ public class ElementMappingRegistry {
      */
     private void setupDefaultMappings() {
         // add mappings from available services
-        Iterator providers = Service.providers(ElementMapping.class);
+        Iterator providers = Service.providers(ElementMapping.class, false);
         if (providers != null) {
             while (providers.hasNext()) {
-                ElementMapping mapping = (ElementMapping)providers.next();
+                String mapping = (String)providers.next();
                 try {
                     addElementMapping(mapping);
                 } catch (IllegalArgumentException e) {
index 562f9b0cb23013d4473a44ddff3a70659fe02582..00d1d5470a9448f06805d768cafd6248410e9266 100644 (file)
 
   <changes>
     <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">
         Bugfix: FOUserAgent specific configuration parameters specified in config file
         were not set when FOP was invoked from command line.