Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/checkers/quals/DefaultLocation.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public enum DefaultLocation {
ALL_EXCEPT_LOCALS,

/** Apply default annotations to unannotated upper bounds: both
* explicit ones in <tt>extends</tt> clauses, and implicit upper bounds
* when no explicit <tt>extends</tt> or <tt>super</tt> clause is
* explicit ones in <code>extends</code> clauses, and implicit upper bounds
* when no explicit <code>extends</code> or <code>super</code> clause is
* present. */
// Especially useful for parameterized classes that provide a lot of
// static methods with the same generic parameters as the class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,7 @@ public void averagePoints(Vector3f[] points) {
* the transform to apply
* @param store
* sphere to store result in
* @return BoundingVolume
* @return ref
* @return either store or a new BoundingSphere
*/
@Override
public BoundingVolume transform(Transform trans, BoundingVolume store) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,6 @@ public void setInitialVelocity(Vector3f initialVelocity) {
}

/**
* @return the velocity variation
* @deprecated
* This method is deprecated.
* Use ParticleEmitter.getParticleInfluencer().getVelocityVariation(); instead.
Expand Down
2 changes: 0 additions & 2 deletions jme3-core/src/main/java/com/jme3/input/Input.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ public interface Input {
/**
* @return The current absolute time as nanoseconds. This time is expected
* to be relative to the time given in InputEvents time property.
*
* @return the current time (in nanoseconds)
*/
public long getInputTimeNanos();
}
6 changes: 2 additions & 4 deletions jme3-core/src/main/java/com/jme3/math/FastMath.java
Original file line number Diff line number Diff line change
Expand Up @@ -846,8 +846,7 @@ public static float determinant(double m00, double m01, double m02,
/**
* Returns a random float between 0 and 1.
*
* @return A random float between <tt>0.0f</tt> (inclusive) to
* <tt>1.0f</tt> (exclusive).
* @return a random float between 0 (inclusive) and 1 (exclusive)
*/
public static float nextRandomFloat() {
return rand.nextFloat();
Expand All @@ -858,8 +857,7 @@ public static float nextRandomFloat() {
*
* @param min the desired minimum value
* @param max the desired maximum value
* @return A random int between <tt>min</tt> (inclusive) to
* <tt>max</tt> (inclusive).
* @return a random int between min (inclusive) and max (inclusive)
*/
public static int nextRandomInt(int min, int max) {
return (int) (nextRandomFloat() * (max - min + 1)) + min;
Expand Down