aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
diff options
context:
space:
mode:
authorRaven Szewczyk <git@eigenraven.me>2023-04-10 17:49:16 +0100
committerRaven Szewczyk <git@eigenraven.me>2023-04-10 17:49:16 +0100
commit8ac58626bd4caa9e49f58acc6b97ac031f6c2107 (patch)
tree0a8c7b737f1f2607fa6875309f4c6a5c2b8b3331 /src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
parentd795cf740c3b48b602d3bfb708ed9e6c492ad37d (diff)
downloadGT5-Unofficial-8ac58626bd4caa9e49f58acc6b97ac031f6c2107.tar.gz
GT5-Unofficial-8ac58626bd4caa9e49f58acc6b97ac031f6c2107.tar.bz2
GT5-Unofficial-8ac58626bd4caa9e49f58acc6b97ac031f6c2107.zip
Update spotless config to 0.2.2
Diffstat (limited to 'src/main/java/gregtech/api/threads/GT_Runnable_Sound.java')
-rw-r--r--src/main/java/gregtech/api/threads/GT_Runnable_Sound.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java b/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
index dfee28cf47..b3c04bc233 100644
--- a/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
+++ b/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
@@ -15,7 +15,7 @@ public class GT_Runnable_Sound implements Runnable {
private final float mSoundStrength, mSoundModulation;
public GT_Runnable_Sound(World aWorld, double aX, double aY, double aZ, int aTimeUntilNextSound,
- ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
+ ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
mWorld = aWorld;
mX = aX;
mY = aY;
@@ -30,16 +30,16 @@ public class GT_Runnable_Sound implements Runnable {
* @deprecated Use {@link #GT_Runnable_Sound(World, double, double, double, int, ResourceLocation, float, float)}
*/
public GT_Runnable_Sound(World aWorld, int aX, int aY, int aZ, int aTimeUntilNextSound,
- ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
+ ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
this(
- aWorld,
- (double) aX + 0.5D,
- (double) aY + 0.5D,
- (double) aZ + 0.5D,
- aTimeUntilNextSound,
- aSoundResourceLocation,
- aSoundStrength,
- aSoundModulation);
+ aWorld,
+ (double) aX + 0.5D,
+ (double) aY + 0.5D,
+ (double) aZ + 0.5D,
+ aTimeUntilNextSound,
+ aSoundResourceLocation,
+ aSoundStrength,
+ aSoundModulation);
}
/**
@@ -47,16 +47,16 @@ public class GT_Runnable_Sound implements Runnable {
*/
@Deprecated
public GT_Runnable_Sound(World aWorld, int aX, int aY, int aZ, int aTimeUntilNextSound, String aSoundName,
- float aSoundStrength, float aSoundModulation) {
+ float aSoundStrength, float aSoundModulation) {
this(
- aWorld,
- (double) aX + 0.5D,
- (double) aY + 0.5D,
- (double) aZ + 0.5D,
- aTimeUntilNextSound,
- new ResourceLocation(aSoundName),
- aSoundStrength,
- aSoundModulation);
+ aWorld,
+ (double) aX + 0.5D,
+ (double) aY + 0.5D,
+ (double) aZ + 0.5D,
+ aTimeUntilNextSound,
+ new ResourceLocation(aSoundName),
+ aSoundStrength,
+ aSoundModulation);
}
@Override