You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ac...@apache.org on 2008/05/28 14:48:11 UTC

svn commit: r660923 - /xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/area/inline/Image.java

Author: acumiskey
Date: Wed May 28 05:48:11 2008
New Revision: 660923

URL: http://svn.apache.org/viewvc?rev=660923&view=rev
Log:
small cleanup

Modified:
    xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/area/inline/Image.java

Modified: xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/area/inline/Image.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/area/inline/Image.java?rev=660923&r1=660922&r2=660923&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/area/inline/Image.java (original)
+++ xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/area/inline/Image.java Wed May 28 05:48:11 2008
@@ -28,14 +28,14 @@
  */
 public class Image extends Area {
     private String url;
-
+    
     /**
      * Create a new image with the given url.
      *
-     * @param u the url of the image
+     * @param url the url of the image
      */
-    public Image(String u) {
-        url = u;
+    public Image(String url) {
+        this.url = url;
     }
 
     /**
@@ -45,7 +45,7 @@
      * @return the url of this image
      */
     public String getURL() {
-        return url;
+        return this.url;
     }
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org