Fix line-marker type

This commit is contained in:
Lukas Rieger (Blue) 2022-08-13 08:51:29 +02:00
parent 97c7f7a916
commit cc3e22bf78
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public class LineMarker extends ObjectMarker {
* @see #setLine(Line)
*/
public LineMarker(String label, Vector3d position, Line line) {
super("extrude", label, position);
super("line", label, position);
this.line = Objects.requireNonNull(line, "line must not be null");
}