summaryrefslogtreecommitdiff
path: root/Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java
diff options
context:
space:
mode:
authorGeonoTRON2000 <geono@thegt.org>2014-05-03 11:43:27 -0700
committerGeonoTRON2000 <geono@thegt.org>2014-05-03 11:43:27 -0700
commit7d73e5f3a8bb951d69724090461d7038957be2e4 (patch)
treeb521685625ebff0674bd3d7f2374da60ce0836c7 /Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java
parent18ef4f2b18d9a5d305c0c6df9902b6599cdaab5c (diff)
downloadshenanigans-7d73e5f3a8bb951d69724090461d7038957be2e4.tar.gz
Added serializability and a class to export example programs.
Diffstat (limited to 'Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java')
-rw-r--r--Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java b/Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java
index a893ec2..c159053 100644
--- a/Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java
+++ b/Shenanigans/src/org/archphantom/shenanigans/Shenanigans.java
@@ -75,12 +75,14 @@ public class Shenanigans {
}
public static void parse (InputStream stream) throws IOException {
+ /*
String data = "";
int b;
while ((b = stream.read()) != -1) {
data += (char) b;
}
// Interact with parser
+ */
}
}