Minor fix in PreprocessorResult dimension reporting.

Fix issue reported by @codeanticode within PreprocessorResult.java where the height was not being returned correctly.
This commit is contained in:
A Pottinger
2019-10-06 23:05:35 -07:00
parent 2b05da132a
commit e46a957f78

View File

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