Skip to content

Commit

Permalink
Update gradle version
Browse files Browse the repository at this point in the history
  • Loading branch information
strubium committed May 29, 2024
1 parent 87a2d89 commit 65df806
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// For those who want the bleeding edge
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
name = "forge"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static void registerThrowable(Throwable e) {
if (catchedThrowables.containsKey(identity)) {
long lasttime = catchedThrowables.get(identity);
if (curtime < lasttime + ConfigSetup.loggingThrowableTimeout) {
// If this exception occured less then some time ago we don't report it.
// If this exception occurred less then some time ago we don't report it.
return;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,16 @@
import net.minecraft.world.World;
import org.apache.commons.lang3.tuple.Pair;
import org.lwjgl.opengl.GL11;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

import javax.annotation.Nullable;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

import static mcjty.theoneprobe.api.TextStyleClass.ERROR;

@SideOnly(Side.CLIENT)
public class OverlayRenderer {

private static Map<Pair<Integer,BlockPos>, Pair<Long, ProbeInfo>> cachedInfo = new HashMap<>();
Expand Down

0 comments on commit 65df806

Please sign in to comment.