]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
modified createID() to remove unecessary parameter
authorJordan Naftolin <jordan@apache.org>
Wed, 28 Jun 2000 18:22:17 +0000 (18:22 +0000)
committerJordan Naftolin <jordan@apache.org>
Wed, 28 Jun 2000 18:22:17 +0000 (18:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193448 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/datatypes/IDReferences.java

index e2ea73c9548d9626d96d97463929ce8d3ce7d939..ef511f5c63057262a247e2d6ff434ef9bb959a9a 100644 (file)
@@ -89,7 +89,7 @@ public class IDReferences {
      */
     public void initializeID(String id, Area area) throws FOPException
     {
-        createID(id,area);
+        createID(id);
         configureID(id,area);        
     }
 
@@ -101,7 +101,7 @@ public class IDReferences {
      * @param area   The area where this id was encountered
      * @exception FOPException
      */
-    public void createID(String id, Area area) throws FOPException
+    public void createID(String id) throws FOPException
     {
         if ( id!=null && !id.equals("") ) {
             if ( doesIDExist(id) ) {