CachedImage

Parameterbenennung korrigiert

git-svn-id: https://svn.libreccm.org/ccm/trunk@2354 8810af33-2d31-482b-a856-94f89814c4df
master
quasi 2013-10-15 09:55:15 +00:00
parent 6aab2b8aaf
commit af55a2d00f
1 changed files with 3 additions and 3 deletions

View File

@ -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);
}
/**