xsbt.Message.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-bridge_2.13.0-M5 Show documentation
Show all versions of compiler-bridge_2.13.0-M5 Show documentation
Incremental compiler of Scala
The newest version!
/*
* Zinc - The incremental compiler for Scala.
* Copyright 2011 - 2017, Lightbend, Inc.
* Copyright 2008 - 2010, Mark Harrah
* This software is released under the terms written in LICENSE.
*/
package xsbt
import java.util.function.Supplier
object Message {
def apply[T](s: => T): Supplier[T] = new Supplier[T] {
override def get(): T = s
}
}