Skip to content

Commit

Permalink
remove legacy ObjectTag.debug, exclude redis' slf4j copy
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Nov 30, 2021
1 parent 5661e75 commit e9b5b42
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 17 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Expand Up @@ -66,6 +66,12 @@
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.7.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down
17 changes: 0 additions & 17 deletions src/main/java/com/denizenscript/denizencore/objects/ObjectTag.java
Expand Up @@ -52,23 +52,6 @@ public interface ObjectTag {
*/
String getPrefix();

/**
* <p>Gets a standard dB representation of this argument. All ObjectTags should follow
* suit.</p>
* <p/>
* Example: <br/>
* <tt>
* Location='x,y,z,world'
* Location='unique_location(x,y,z,world)'
* </tt>
*
* @return the debug information
*/
@Deprecated
default String debug() {
return "<G>" + getPrefix() + "='<Y>" + debuggable() + "<G>' ";
}

/**
* Gets a debuggable format of the object. Like identify, but for console output.
*/
Expand Down

0 comments on commit e9b5b42

Please sign in to comment.