Skip to content

Commit 5b5e2a5

Browse files
authored
Fix javadoc errors (#2160)
1 parent 85747df commit 5b5e2a5

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

jme3-core/src/main/java/com/jme3/material/RenderState.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1767,8 +1767,6 @@ public String toString() {
17671767
* {@code Front} and {@code Front} becomes {@code Back}.
17681768
* <p>{@code FrontAndBack} and {@code Off} are unaffected. This is important
17691769
* for flipping the cull mode when normal vectors are found to be backward.
1770-
* @param cull
1771-
* @return flipped cull mode
17721770
*/
17731771
public void flipFaceCull() {
17741772
switch (cullMode) {

jme3-core/src/main/java/com/jme3/scene/instancing/InstancedGeometry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ private void swap(int idx1, int idx2) {
277277
}
278278

279279
/**
280-
* @Deprecated use {@link #updateInstances(com.jme3.renderer.Camera)
280+
* @deprecated use {@link #updateInstances(com.jme3.renderer.Camera)}
281281
*/
282282
public void updateInstances() {
283283
updateInstances(cam);

jme3-core/src/main/java/com/jme3/util/res/ResourceLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public interface ResourceLoader {
6868
*
6969
* @param path
7070
* The resource name
71-
* @return An enumeration of {@link java.net.URL <tt>URL</tt>} objects for
71+
* @return An enumeration of {@link java.net.URL <code>URL</code>} objects for
7272
* the resource. If no resources could be found, the enumeration
7373
* will be empty.
7474
*

jme3-core/src/main/java/com/jme3/util/res/Resources.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public static InputStream getResourceAsStream(String path, Class<?> parent) {
166166
* The resource name
167167
*
168168
*
169-
* @return An enumeration of {@link java.net.URL <tt>URL</tt>} objects for
169+
* @return An enumeration of {@link java.net.URL <code>URL</code>} objects for
170170
* the resource. If no resources could be found, the enumeration
171171
* will be empty.
172172
*

jme3-examples/src/main/java/jme3test/animation/TestIssue2076.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class TestIssue2076 extends SimpleApplication {
5959
*
6060
* @param args array of command-line arguments (not null)
6161
*/
62-
public static void main(String... argv) {
62+
public static void main(String... args) {
6363
TestIssue2076 app = new TestIssue2076();
6464
app.start();
6565
}

0 commit comments

Comments
 (0)