Skip to content

Commit a769a6f

Browse files
committed
Fixed compile error. Too quick on the trigger as usual x
1 parent 4377a2a commit a769a6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/scoverage/Invoker.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ object Invoker {
2424
* @param id the id of the statement that was invoked
2525
* @param dataDir the directory where the measurement data is held
2626
*/
27-
def invoked(id: Int, dataDir: String) = {
27+
def invoked(id: Int, dataDir: String): Unit = {
2828
// [sam] we can do this simple check to save writing out to a file.
2929
// This won't work across JVMs but since there's no harm in writing out the same id multiple
3030
// times since for coverage we only care about 1 or more, (it just slows things down to

0 commit comments

Comments
 (0)