summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/upnfx/util/UPN.java
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-06-15 14:21:27 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-06-15 14:21:27 +0200
commit96b0868fb4a95ceabd4aeda992f6a90a44ae521f (patch)
tree8810c6a4b3ec4f7d85832d1b528c7bdec3146be6 /src/de/fhswf/in/inf/upnfx/util/UPN.java
parentd8cd813ddc54c455eb3071795038b97b72dc1ee9 (diff)
downloadUpnFx-96b0868fb4a95ceabd4aeda992f6a90a44ae521f.tar.gz
UpnFx-96b0868fb4a95ceabd4aeda992f6a90a44ae521f.zip
Remove a Sysout and fix a few problems with 0
Diffstat (limited to 'src/de/fhswf/in/inf/upnfx/util/UPN.java')
-rw-r--r--src/de/fhswf/in/inf/upnfx/util/UPN.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/de/fhswf/in/inf/upnfx/util/UPN.java b/src/de/fhswf/in/inf/upnfx/util/UPN.java
index bc773d5..1918ba6 100644
--- a/src/de/fhswf/in/inf/upnfx/util/UPN.java
+++ b/src/de/fhswf/in/inf/upnfx/util/UPN.java
@@ -37,15 +37,13 @@ public class UPN
{
throw new IllegalArgumentException("Operator can't be null.");
}
-
- System.out.println(operator);
-
+
lastX = upnStack.peek();
operator.eval(upnStack);
}
-
+
public final void addDouble(Double newVal)
{
if (newVal == null)