Commit 99310cb7 authored by iSergio's avatar iSergio
Browse files

Missed statics

parent 1e4fdf15
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -28,15 +28,15 @@ public class Axis {
     * Denotes the x-axis.
     */
    @JsProperty(name = "X")
    public native Number X();
    public static native Number X();
    /**
     * Denotes the y-axis.
     */
    @JsProperty(name = "Y")
    public native Number Y();
    public static native Number Y();
    /**
     * Denotes the z-axis.
     */
    @JsProperty(name = "Z")
    public native Number Z();
    public static native Number Z();
}