Paweł Wiejacha

Results 5 comments of Paweł Wiejacha

I get the same error when using openjdk-17 and openjdk-18. My fix/workaround for this issue can be found here: https://github.com/pawel-wiejacha/sbt-jmh/commit/a916d771b2d75dce3404cce5cba282884f2251c6 where I switched `Run` to `ForkRun`. I'm not sure if...

Here's my workaround for a missing do not disturb mode: Add one or more rules like this: ```ini [dnd] appname = "Google Chrome" skip_display = true ``` Just after starting...

@ruado1987 In ScalaMock 3.2.1 you can mock `FileSystemManager.resolveFile`: ``` scala "ScalaMock" should "stub FileSystemManager" in { import org.apache.commons.vfs2._ val s = stub[FileSystemManager] (s.resolveFile(_: String, _: FileSystemOptions)) when ("test", null) returns...

@trane: thanks - I didn't know about this case. It's a different bug so I created separate issue (#93) for it. Handling overloaded methods with parameters passed by name can...

Here's the minimal example that fails to compile: ``` java import java.util.Map; public interface Issue86 { public void route(Map map); // compiles public void route(Map map); // does not compile...