Преглед изворни кода

delete empty statements (double semicolons)

Stephen Gold пре 4 година
родитељ
комит
515e0c0ff1

+ 2 - 2
jme3-core/src/test/java/com/jme3/math/FastMathTest.java

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009-2020 jMonkeyEngine
+ * Copyright (c) 2009-2021 jMonkeyEngine
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -774,7 +774,7 @@ public class FastMathTest {
         final Vector2f t0 = new Vector2f(-0.43f, 2.54f);
         final Vector2f t1 = new Vector2f(Float.NEGATIVE_INFINITY, 2.54f);
         final Vector2f t2 = new Vector2f(Float.NaN, Float.POSITIVE_INFINITY);
-        final Vector2f p = new Vector2f(-3.19f, -0.001f);;
+        final Vector2f p = new Vector2f(-3.19f, -0.001f);
 
         assertEquals(0, FastMath.pointInsideTriangle(t0, t1, t2, p));
     }

+ 1 - 1
jme3-examples/src/main/java/jme3test/animation/TestJaime.java

@@ -132,7 +132,7 @@ public class TestJaime  extends SimpleApplication {
 
         
         FilterPostProcessor fpp = new FilterPostProcessor(assetManager);
-        SSAOFilter filter = new SSAOFilter(0.10997847f,0.440001f,0.39999998f,-0.008000026f);;
+        SSAOFilter filter = new SSAOFilter(0.10997847f,0.440001f,0.39999998f,-0.008000026f);
         fpp.addFilter(filter);
         fpp.addFilter(new FXAAFilter());
         fpp.addFilter(new FXAAFilter());     

+ 1 - 1
jme3-examples/src/main/java/jme3test/games/WorldOfInception.java

@@ -236,7 +236,7 @@ public class WorldOfInception extends SimpleApplication implements AnalogListene
                     return;
                 }
                 //give to parent
-                logger.log(Level.INFO, "give to parent");;
+                logger.log(Level.INFO, "give to parent");
                 parent.takeOverChild(inParentPosition.add(playerPos.normalize()));
                 application.getStateManager().attach(parent);
                 currentReturnLevel = parent;

+ 2 - 2
jme3-examples/src/main/java/jme3test/post/TestMultiViewsFilters.java

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009-2020 jMonkeyEngine
+ * Copyright (c) 2009-2021 jMonkeyEngine
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -150,7 +150,7 @@ public class TestMultiViewsFilters extends SimpleApplication {
         fpp.addFilter(rbf);
 
 
-        SSAOFilter f = new SSAOFilter(1.8899765f, 20.490374f, 0.4699998f, 0.1f);;
+        SSAOFilter f = new SSAOFilter(1.8899765f, 20.490374f, 0.4699998f, 0.1f);
         fpp4.addFilter(f);
         SSAOUI ui = new SSAOUI(inputManager, f);
         

+ 1 - 1
jme3-examples/src/main/java/jme3test/post/TestSSAO.java

@@ -82,7 +82,7 @@ public class TestSSAO extends SimpleApplication {
         rootNode.attachChild(model);
 
         FilterPostProcessor fpp = new FilterPostProcessor(assetManager);
-        SSAOFilter ssaoFilter = new SSAOFilter(2.9299974f,32.920483f,5.8100376f,0.091000035f);;
+        SSAOFilter ssaoFilter = new SSAOFilter(2.9299974f,32.920483f,5.8100376f,0.091000035f);
         ssaoFilter.setApproximateNormals(true);
         fpp.addFilter(ssaoFilter);
         SSAOUI ui = new SSAOUI(inputManager, ssaoFilter);