summaryrefslogtreecommitdiff
path: root/src/thenewpoketext
diff options
context:
space:
mode:
authorRafael Marçalo <public@rafaelmarcalo.xyz>2024-09-05 16:31:33 +0100
committerRafael Marçalo <public@rafaelmarcalo.xyz>2024-09-05 16:31:33 +0100
commit8b67572ad7e1508341345dc46a2597e9fa170cbb (patch)
tree8f37c4d60ce0f07b9eaf30be34f39298da97b242 /src/thenewpoketext
parentb65f4a80da28e7ec4de16c8b1abf906e8d7be2c5 (diff)
Removed invasive brandingHEADmaster
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 {