File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
common/src/main/java/de/bluecolored/bluemap/common/config/mask Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class BoxMaskConfig extends MaskConfig {
2424 public Mask createMask () throws ConfigurationException {
2525 if (minX > maxX || minY > maxY || minZ > maxZ ) {
2626 throw new ConfigurationException ("""
27- The box-mask configuration results in a collapsed volume .
27+ The box-mask configuration results in a degenerate mask .
2828 Make sure that all "min-" values are actually SMALLER than their "max-" counterparts.
2929 """ .trim ());
3030 }
Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ public class CircleMaskConfig extends MaskConfig {
2424 public Mask createMask () throws ConfigurationException {
2525 if (minY > maxY ) {
2626 throw new ConfigurationException ("""
27- The circle-mask configuration results in a collapsed volume .
27+ The circle-mask configuration results in a degenerate mask .
2828 Make sure that the "min-y" value is actually SMALLER than the "max-y" counterpart.
2929 """ .trim ());
3030 }
3131
3232 if (radius <= 0 ) {
3333 throw new ConfigurationException ("""
34- The circle-mask configuration results in a collapsed volume .
34+ The circle-mask configuration results in a degenerate mask .
3535 Make sure that the "radius" value is greater than 0.
3636 """ .trim ());
3737 }
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ public class EllipseMaskConfig extends MaskConfig {
2525 public Mask createMask () throws ConfigurationException {
2626 if (minY > maxY ) {
2727 throw new ConfigurationException ("""
28- The circle-mask configuration results in a collapsed volume .
28+ The circle-mask configuration results in a degenerate mask .
2929 Make sure that the "min-y" value is actually SMALLER than the "max-y" counterpart.
3030 """ .trim ());
3131 }
3232
3333 if (radiusX <= 0 || radiusZ <= 0 ) {
3434 throw new ConfigurationException ("""
35- The ellipse-mask configuration results in a collapsed volume .
35+ The ellipse-mask configuration results in a degenerate mask .
3636 Make sure that the radius values are greater than 0.
3737 """ .trim ());
3838 }
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class PolygonMaskConfig extends MaskConfig {
2323 public Mask createMask () throws ConfigurationException {
2424 if (minY > maxY ) {
2525 throw new ConfigurationException ("""
26- The polygon-mask configuration results in a collapsed volume .
26+ The polygon-mask configuration results in a degenerate mask .
2727 Make sure that the "min-y" value is actually SMALLER than the "max-y" counterpart.
2828 """ .trim ());
2929 }
You can’t perform that action at this time.
0 commit comments