Skip to content

Commit

Permalink
Fixed java being dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
Flxma committed Jan 15, 2020
1 parent 60f35e3 commit b05e578
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.flexusma</groupId>
<artifactId>JDA-CMDH</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>

<build>
<plugins>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/de/flexusma/jdacmdh/CommandPreferences.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package de.flexusma.jdacmdh;


import de.flexusma.jdacmdh.utils.Emoticons;

import javax.annotation.Nullable;
import java.io.Serializable;

Expand Down
18 changes: 0 additions & 18 deletions src/main/java/de/flexusma/jdacmdh/Emoticons.java

This file was deleted.

16 changes: 16 additions & 0 deletions src/main/java/de/flexusma/jdacmdh/utils/Emoticons.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package de.flexusma.jdacmdh.utils;

public class Emoticons {

public String success;
public String warn;
public String error;


public Emoticons(String success, String warn, String f){
this.success=success;
this.warn=warn;
this.error=f;
}

}

0 comments on commit b05e578

Please sign in to comment.