summaryrefslogtreecommitdiffstats
path: root/src/ast/types/AtomType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/types/AtomType.java')
-rw-r--r--src/ast/types/AtomType.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ast/types/AtomType.java b/src/ast/types/AtomType.java
index 0387ec1..fc1c69e 100644
--- a/src/ast/types/AtomType.java
+++ b/src/ast/types/AtomType.java
@@ -2,9 +2,10 @@ package ast.types;
/**
* An tom type.
- * TODO: do I need to use this one?
*/
public class AtomType extends Type {
+
+ @Override
public String toPrint(String prefix) {
return prefix + "Atom\n";
}