summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPepich <benedikt.abel@yahoo.de>2017-05-31 13:17:09 +0200
committerPepich <benedikt.abel@yahoo.de>2017-05-31 13:17:09 +0200
commit438c1ae72ec8ecce40d45d2234d829191c270ca7 (patch)
treef7382cb81e814d7aaf467859a79b8a034859ac00
parentf6d3537d93e9275ffeca04b963594c488afc743f (diff)
Fixed getCaller always returning "Thread"
-rw-r--r--src/com/redstoner/misc/Utils.java6
1 files changed, 3 insertions, 3 deletions
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++)
{