From 438c1ae72ec8ecce40d45d2234d829191c270ca7 Mon Sep 17 00:00:00 2001 From: Pepich Date: Wed, 31 May 2017 13:17:09 +0200 Subject: Fixed getCaller always returning "Thread" --- src/com/redstoner/misc/Utils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/com/redstoner/misc/Utils.java b/src/com/redstoner/misc/Utils.java index e7975e0..01eeea8 100644 --- a/src/com/redstoner/misc/Utils.java +++ b/src/com/redstoner/misc/Utils.java @@ -16,7 +16,7 @@ import net.md_5.bungee.api.ChatColor; /** The utils class containing utility functions. Those include but are not limited to sending formatted messages, broadcasts and more. * * @author Pepich */ -@Version(major = 1, minor = 3, revision = 6, compatible = 1) +@Version(major = 1, minor = 3, revision = 7, compatible = 1) public final class Utils { /** The SimpleDateFormat used for getting the current date. */ @@ -209,7 +209,7 @@ public final class Utils * @return the Name of the calling class. */ private static final String getCaller() { - StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace(); + StackTraceElement[] stackTrace = (new Exception()).getStackTrace(); String classname = "Utils"; for (int i = 0; classname.equals("Utils"); i++) { @@ -224,7 +224,7 @@ public final class Utils * @return the name of the calling class. */ public static final String getCaller(String directCaller) { - StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace(); + StackTraceElement[] stackTrace = (new Exception()).getStackTrace(); String classname = (directCaller == null ? "Utils" : directCaller); for (int i = 0; classname.equals(directCaller) || classname.equals("Utils"); i++) { -- cgit v1.2.3