From c9357b4db130141548e422c2653df0d51d826736 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Mon, 20 Apr 2020 17:08:42 -0700 Subject: [PATCH] Fixes issue #1350 for getters (MorphTrack documentation) --- jme3-core/src/main/java/com/jme3/anim/MorphTrack.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jme3-core/src/main/java/com/jme3/anim/MorphTrack.java b/jme3-core/src/main/java/com/jme3/anim/MorphTrack.java index b453f8487..ae3a6bf71 100644 --- a/jme3-core/src/main/java/com/jme3/anim/MorphTrack.java +++ b/jme3-core/src/main/java/com/jme3/anim/MorphTrack.java @@ -79,7 +79,7 @@ public class MorphTrack implements AnimTrack { /** * return the array of weights of this track * - * @return the pre-existing array + * @return the pre-existing array -- do not modify */ public float[] getWeights() { return weights; @@ -88,7 +88,7 @@ public class MorphTrack implements AnimTrack { /** * returns the arrays of time for this track * - * @return the pre-existing array + * @return the pre-existing array -- do not modify */ public float[] getTimes() { return times;