From 06b5491a5df3f21b1ec8f6924295980754afebbe Mon Sep 17 00:00:00 2001 From: iSergio Date: Thu, 2 Jun 2022 22:08:21 +0300 Subject: [PATCH] Fix property type --- .../cs/datasources/properties/VelocityVectorProperty.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/datasources/properties/VelocityVectorProperty.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/datasources/properties/VelocityVectorProperty.java index 7bed8be1..00278936 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/datasources/properties/VelocityVectorProperty.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/datasources/properties/VelocityVectorProperty.java @@ -40,7 +40,7 @@ public class VelocityVectorProperty extends Property { * Gets or sets the position property used to compute the velocity vector. */ @JsProperty - public Property position; + public Property position; /** * A {@link Property} which evaluates to a @@ -59,7 +59,7 @@ public class VelocityVectorProperty extends Property { * @param position The position property used to compute the velocity. */ @JsConstructor - public VelocityVectorProperty(Property position) { + public VelocityVectorProperty(Property position) { } /** @@ -71,6 +71,6 @@ public class VelocityVectorProperty extends Property { * @param normalize Whether to normalize the computed velocity vector. */ @JsConstructor - public VelocityVectorProperty(Property position, boolean normalize) { + public VelocityVectorProperty(Property position, boolean normalize) { } } -- GitLab