Merge pull request #120 from ehack/master

Fixed unused desiredHeight variable.
This commit is contained in:
Andrew Stephan
2016-06-03 10:01:22 -04:00
@@ -38,7 +38,7 @@ public class ImagePicker extends CordovaPlugin {
desiredWidth = this.params.getInt("width");
}
if (this.params.has("height")) {
desiredWidth = this.params.getInt("height");
desiredHeight = this.params.getInt("height");
}
if (this.params.has("quality")) {
quality = this.params.getInt("quality");
@@ -69,4 +69,4 @@ public class ImagePicker extends CordovaPlugin {
this.callbackContext.error("No images selected");
}
}
}
}