mirror of https://github.com/sbt/sbt.git
Merge ExtendedReporter into Reporter.
This commit is contained in:
parent
61decef972
commit
a1b793dc1e
|
|
@ -1,10 +0,0 @@
|
|||
/* sbt -- Simple Build Tool
|
||||
* Copyright 2012 Eugene Vigdorchik
|
||||
*/
|
||||
package xsbti;
|
||||
|
||||
/** An addition to standard reporter. Used by the IDE. */
|
||||
public interface ExtendedReporter extends Reporter
|
||||
{
|
||||
public void comment(Position pos, String msg);
|
||||
}
|
||||
|
|
@ -17,4 +17,6 @@ public interface Reporter
|
|||
public Problem[] problems();
|
||||
/** Logs a message.*/
|
||||
public void log(Position pos, String msg, Severity sev);
|
||||
}
|
||||
/** Reports a comment. */
|
||||
public void comment(Position pos, String msg);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue