Merge pull request #10 from sampottinger/fix_preprocessor_result_height

Minor fix in PreprocessorResult dimension reporting.
This commit is contained in:
A Samuel Pottinger
2019-10-06 23:11:13 -07:00
committed by GitHub

View File

@@ -193,6 +193,6 @@ public class PreprocessorResult {
* given.
*/
public String getSketchHeight() {
return sketchWidth;
return sketchHeight;
}
}