Skip to content
This repository has been archived by the owner on Jul 27, 2019. It is now read-only.

Commit

Permalink
Latest commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnaude committed Feb 7, 2015
1 parent 0bd62d9 commit 4953020
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions dependency-reduced-pom.xml
Expand Up @@ -319,6 +319,12 @@
<version>0.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.cnaude.purpleirc</groupId>
<artifactId>PurpleIRC-API</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Expand Up @@ -305,6 +305,11 @@
<version>0.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.cnaude.purpleirc</groupId>
<artifactId>PurpleIRC-API</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>

<build>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/cnaude/purpleirc/PurpleIRC.java
Expand Up @@ -188,7 +188,7 @@ public class PurpleIRC extends JavaPlugin {
private YamlConfiguration heroConfig;
private final File cacheFile;
private final File uuidCacheFile;

public PurpleIRC() {
this.MAINCONFIG = "MAIN-CONFIG";
this.sampleFileName = "SampleBot.yml";
Expand All @@ -206,7 +206,7 @@ public PurpleIRC() {
this.cacheFile = new File("plugins/PurpleIRC/displayName.cache");
this.uuidCacheFile = new File("plugins/PurpleIRC/uuid.cache");
}

/**
*
*/
Expand Down Expand Up @@ -1435,5 +1435,5 @@ public boolean isUpdateCheckerEnabled() {
public String updateCheckerMode() {
return updateCheckerMode;
}

}

0 comments on commit 4953020

Please sign in to comment.