aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJordan Naftolin <jordan@apache.org>2000-06-28 18:22:17 +0000
committerJordan Naftolin <jordan@apache.org>2000-06-28 18:22:17 +0000
commit4396ae24c390defc7e915ae3e420ed97dfb335fa (patch)
treec8da6b7b9f665ed8781841f767ec79c10c58dea4 /src
parentcbdf5b729207baebac40c928a1990162efd123c2 (diff)
downloadxmlgraphics-fop-4396ae24c390defc7e915ae3e420ed97dfb335fa.tar.gz
xmlgraphics-fop-4396ae24c390defc7e915ae3e420ed97dfb335fa.zip
modified createID() to remove unecessary parameter
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193448 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/org/apache/fop/datatypes/IDReferences.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/apache/fop/datatypes/IDReferences.java b/src/org/apache/fop/datatypes/IDReferences.java
index e2ea73c95..ef511f5c6 100644
--- a/src/org/apache/fop/datatypes/IDReferences.java
+++ b/src/org/apache/fop/datatypes/IDReferences.java
@@ -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) ) {