summaryrefslogtreecommitdiff
path: root/src/thenewpoketext
diff options
context:
space:
mode:
Diffstat (limited to 'src/thenewpoketext')
-rwxr-xr-xsrc/thenewpoketext/PokeTextData.java1
-rwxr-xr-xsrc/thenewpoketext/TextToPoke.java1
-rwxr-xr-xsrc/thenewpoketext/UnicodeParser.java3
3 files changed, 1 insertions, 4 deletions
diff --git a/src/thenewpoketext/PokeTextData.java b/src/thenewpoketext/PokeTextData.java
index 35f4721..ddea90d 100755
--- a/src/thenewpoketext/PokeTextData.java
+++ b/src/thenewpoketext/PokeTextData.java
@@ -3,7 +3,6 @@ package thenewpoketext;
/*----------------------------------------------------------------------------*/
/*-- PokeTextData.java - decodes gen4 games text into Unicode --*/
/*-- Code derived from "thenewpoketext", copyright (C) loadingNOW --*/
-/*-- Ported to Java and bugfixed/customized by sneed --*/
/*----------------------------------------------------------------------------*/
import java.util.ArrayList;
diff --git a/src/thenewpoketext/TextToPoke.java b/src/thenewpoketext/TextToPoke.java
index f80fee4..e68147b 100755
--- a/src/thenewpoketext/TextToPoke.java
+++ b/src/thenewpoketext/TextToPoke.java
@@ -3,7 +3,6 @@ package thenewpoketext;
/*----------------------------------------------------------------------------*/
/*-- TextToPoke.java - encodes gen4 games text from Unicode --*/
/*-- Code derived from "thenewpoketext", copyright (C) loadingNOW --*/
-/*-- Ported to Java and bugfixed/customized by sneed --*/
/*----------------------------------------------------------------------------*/
import java.util.ArrayList;
diff --git a/src/thenewpoketext/UnicodeParser.java b/src/thenewpoketext/UnicodeParser.java
index 6083b7e..5a209b0 100755
--- a/src/thenewpoketext/UnicodeParser.java
+++ b/src/thenewpoketext/UnicodeParser.java
@@ -3,7 +3,6 @@ package thenewpoketext;
/*----------------------------------------------------------------------------*/
/*-- UnicodeParser.java - maintains the poke<->unicode text table --*/
/*-- Code loosely derived from "thenewpoketext", copyright (C) loadingNOW --*/
-/*-- Ported to Java and customized by sneed --*/
/*----------------------------------------------------------------------------*/
import java.io.FileNotFoundException;
@@ -11,7 +10,7 @@ import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
-import com.sneed.pkrandom.FileFunctions;
+import com.pkrandom.FileFunctions;
public class UnicodeParser {