Skip to content
Snippets Groups Projects
Commit 5b864ee5 authored by Leonard Kupper's avatar Leonard Kupper
Browse files

Fix trailing spaces in empty lines......

parent eb291e69
No related branches found
No related tags found
1 merge request!8Feat/rasterizer 10
......@@ -11,7 +11,7 @@ public enum SettingType {
CSV_LOCATION("csv-path"),
PRINTER_CONFIG_PATH("printer-config-path"),
SEMANTIC_MAPPING("semantic-mapping");
private final String mName;
SettingType(final String name) {
......
......@@ -330,7 +330,7 @@ public class Rectangle {
public int getHeight() {
return wrapInt(mRectangle.getHeight());
}
public int getRight() {
return wrapInt(mRectangle.getRight()) - 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment