aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/area
diff options
context:
space:
mode:
authorAdrian Cumiskey <acumiskey@apache.org>2008-05-28 12:48:11 +0000
committerAdrian Cumiskey <acumiskey@apache.org>2008-05-28 12:48:11 +0000
commit7c3df5221ff420d9b476921f9233a58a637f44b2 (patch)
treefe4b62fb2aaba51633963a84b6ad8b170b55d93c /src/java/org/apache/fop/area
parent4251cfe084fb0f9782b455b461cbcbff88a3bb37 (diff)
downloadxmlgraphics-fop-7c3df5221ff420d9b476921f9233a58a637f44b2.tar.gz
xmlgraphics-fop-7c3df5221ff420d9b476921f9233a58a637f44b2.zip
small cleanup
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@660923 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/area')
-rw-r--r--src/java/org/apache/fop/area/inline/Image.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/area/inline/Image.java b/src/java/org/apache/fop/area/inline/Image.java
index 1e0a65114..1689dd6c5 100644
--- a/src/java/org/apache/fop/area/inline/Image.java
+++ b/src/java/org/apache/fop/area/inline/Image.java
@@ -28,14 +28,14 @@ import org.apache.fop.area.Area;
*/
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 @@ public class Image extends Area {
* @return the url of this image
*/
public String getURL() {
- return url;
+ return this.url;
}
}