You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package my.core.java.comparison.builder
import my.core.java.comparison.Comparator
/** Constructs a comparison DriverTask */
class TaskBuilder(builder: DriverBuilder)
extends my.core.java.common.builder.TaskBuilder {
/** Uses a [[Comparator]] as compiler for the DriverTask being built. <== this line won't work
/** Uses a [[my.core.java.comparison.Comparator]] as compiler for the DriverTask being built. <== with fully qualified name it works
...
*/
def withComparator[C, R](id: String, comparator: Comparator[C, R]): this.type = {
...
}
}
The text was updated successfully, but these errors were encountered:
Sorry for the acronym used, yes pull request :-) I.e. if you have some time and would like to see this solved, it would help a lot if you could give it a shot implementing it. We only maintain this plugin on a minimum-per-need basis that gets our projects to work well etc.
lrytz
added a commit
to scala/scala-java8-compat
that referenced
this issue
May 20, 2019
The text was updated successfully, but these errors were encountered: