From af55a2d00f13ad66ad70477938459f88eada43c7 Mon Sep 17 00:00:00 2001 From: quasi Date: Tue, 15 Oct 2013 09:55:15 +0000 Subject: [PATCH] CachedImage Parameterbenennung korrigiert git-svn-id: https://svn.libreccm.org/ccm/trunk@2354 8810af33-2d31-482b-a856-94f89814c4df --- ccm-cms/src/com/arsdigita/cms/CachedImage.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ccm-cms/src/com/arsdigita/cms/CachedImage.java b/ccm-cms/src/com/arsdigita/cms/CachedImage.java index e5fc954e6..ed21b94e1 100644 --- a/ccm-cms/src/com/arsdigita/cms/CachedImage.java +++ b/ccm-cms/src/com/arsdigita/cms/CachedImage.java @@ -104,11 +104,11 @@ public class CachedImage { * * @param cachedImage the CachedImage to resize * @param maxWidth max width of the image after resizing - * @param height max height of the image after resizing + * @param maxHeight max height of the image after resizing */ - public CachedImage(CachedImage cachedImage, int maxWidth, int height) { + public CachedImage(CachedImage cachedImage, int maxWidth, int maxHeight) { this(cachedImage); - this.resizeImage(maxWidth, height); + this.resizeImage(maxWidth, maxHeight); } /**