summaryrefslogtreecommitdiff
path: root/src/com/redstoner/annotations/Debugable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/redstoner/annotations/Debugable.java')
-rw-r--r--src/com/redstoner/annotations/Debugable.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/com/redstoner/annotations/Debugable.java b/src/com/redstoner/annotations/Debugable.java
deleted file mode 100644
index be6ec1c..0000000
--- a/src/com/redstoner/annotations/Debugable.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.redstoner.annotations;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/** Debugable annotation, to be added to methods that invoke the Debugger.notifyMethod method for debugging purposes.
- *
- * @author Pepich */
-@Target(ElementType.METHOD)
-@Retention(RetentionPolicy.RUNTIME)
-public @interface Debugable
-{}