aboutsummaryrefslogtreecommitdiff
path: root/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-11-20 00:02:50 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:08 +0100
commitc3eb841ce8ae349d9820dbf6c18884955e74254e (patch)
tree5e82e22a6f0e8245c11a6db81cb9647106a14bde /interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java
parentda1bfe392c638fc03181e0d6b51eb41dbdcce548 (diff)
downloaddotty-c3eb841ce8ae349d9820dbf6c18884955e74254e.tar.gz
dotty-c3eb841ce8ae349d9820dbf6c18884955e74254e.tar.bz2
dotty-c3eb841ce8ae349d9820dbf6c18884955e74254e.zip
Make every project use the new directory structure
Diffstat (limited to 'interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java')
-rw-r--r--interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java b/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java
deleted file mode 100644
index f4c80c0cf..000000000
--- a/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package dotty.tools.dotc.interfaces;
-
-/** Report errors, warnings and info messages during the compilation process
- *
- * You should implement this interface if you want to handle the diagnostics
- * returned by the compiler yourself.
- *
- * See the method `process` of `dotty.tools.dotc.Driver` for more information.
- */
-public interface SimpleReporter {
- /** Report a diagnostic.
- * @param diag the diagnostic message to report
- */
- void report(Diagnostic diag);
-}