Marked a couple more members as 'final'. (continuation of 441bb95
)
Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
parent
769ad963e7
commit
df3e662865
|
@ -44,19 +44,19 @@ public class DownloadNode {
|
||||||
private Download download;
|
private Download download;
|
||||||
|
|
||||||
/** Beatmap set ID. */
|
/** Beatmap set ID. */
|
||||||
private int beatmapSetID;
|
private final int beatmapSetID;
|
||||||
|
|
||||||
/** Last updated date string. */
|
/** Last updated date string. */
|
||||||
private String date;
|
private final String date;
|
||||||
|
|
||||||
/** Song title. */
|
/** Song title. */
|
||||||
private String title, titleUnicode;
|
private final String title, titleUnicode;
|
||||||
|
|
||||||
/** Song artist. */
|
/** Song artist. */
|
||||||
private String artist, artistUnicode;
|
private final String artist, artistUnicode;
|
||||||
|
|
||||||
/** Beatmap creator. */
|
/** Beatmap creator. */
|
||||||
private String creator;
|
private final String creator;
|
||||||
|
|
||||||
/** Button drawing values. */
|
/** Button drawing values. */
|
||||||
private static float buttonBaseX, buttonBaseY, buttonWidth, buttonHeight, buttonOffset;
|
private static float buttonBaseX, buttonBaseY, buttonWidth, buttonHeight, buttonOffset;
|
||||||
|
|
|
@ -28,7 +28,7 @@ import java.nio.channels.ReadableByteChannel;
|
||||||
*/
|
*/
|
||||||
public class ReadableByteChannelWrapper implements ReadableByteChannel {
|
public class ReadableByteChannelWrapper implements ReadableByteChannel {
|
||||||
/** The wrapped ReadableByteChannel. */
|
/** The wrapped ReadableByteChannel. */
|
||||||
private ReadableByteChannel rbc;
|
private final ReadableByteChannel rbc;
|
||||||
|
|
||||||
/** The number of bytes read. */
|
/** The number of bytes read. */
|
||||||
private long bytesRead;
|
private long bytesRead;
|
||||||
|
|
|
@ -61,9 +61,9 @@ public class CatmullCurve extends EqualDistanceMultiCurve {
|
||||||
points.removeFirst();
|
points.removeFirst();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (getX(ncontrolPoints - 1) != getX(ncontrolPoints - 2)
|
if (getX(ncontrolPoints - 1) != getX(ncontrolPoints - 2) ||
|
||||||
||getY(ncontrolPoints - 1) != getY(ncontrolPoints - 2))
|
getY(ncontrolPoints - 1) != getY(ncontrolPoints - 2))
|
||||||
points.addLast(new Vec2f(getX(ncontrolPoints - 1), getY(ncontrolPoints - 1)));
|
points.addLast(new Vec2f(getX(ncontrolPoints - 1), getY(ncontrolPoints - 1)));
|
||||||
if (points.size() >= 4) {
|
if (points.size() >= 4) {
|
||||||
try {
|
try {
|
||||||
catmulls.add(new CentripetalCatmullRom(points.toArray(new Vec2f[0])));
|
catmulls.add(new CentripetalCatmullRom(points.toArray(new Vec2f[0])));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user