Separated multiple variable declarations.
This commit is contained in:
@@ -1091,7 +1091,10 @@ public class BlowfishEngine
|
||||
private static final int BLOCK_SIZE = 8; // bytes = 64 bits
|
||||
private static final int SBOX_SK = 256;
|
||||
private static final int P_SZ = ROUNDS + 2;
|
||||
private final int[] S0, S1, S2, S3; // the s-boxes
|
||||
private final int[] S0; // the s-boxes
|
||||
private final int[] S1;
|
||||
private final int[] S2;
|
||||
private final int[] S3;
|
||||
private final int[] P; // the p-array
|
||||
private boolean encrypting = false;
|
||||
private byte[] workingKey = null;
|
||||
|
@@ -24,7 +24,9 @@ import java.io.Serializable;
|
||||
*/
|
||||
public class Point3D implements Serializable
|
||||
{
|
||||
private volatile int _x, _y, _z;
|
||||
private volatile int _x;
|
||||
private volatile int _y;
|
||||
private volatile int _z;
|
||||
|
||||
public Point3D(int pX, int pY, int pZ)
|
||||
{
|
||||
@@ -98,7 +100,8 @@ public class Point3D implements Serializable
|
||||
|
||||
public synchronized long distanceSquaredTo(Point3D point)
|
||||
{
|
||||
long dx, dy;
|
||||
long dx;
|
||||
long dy;
|
||||
synchronized (point)
|
||||
{
|
||||
dx = _x - point._x;
|
||||
@@ -109,7 +112,8 @@ public class Point3D implements Serializable
|
||||
|
||||
public static long distanceSquared(Point3D point1, Point3D point2)
|
||||
{
|
||||
long dx, dy;
|
||||
long dx;
|
||||
long dy;
|
||||
synchronized (point1)
|
||||
{
|
||||
synchronized (point2)
|
||||
|
Reference in New Issue
Block a user