Jason Pickens
Jason Pickens
The docs on how to [add a custom logger](https://www.scala-sbt.org/1.x/docs/Howto-Logging.html#Add+a+custom+logger) say to use `extraLoggers` but this is deprecated. Presumably the replacement is `extraAppenders` however this is a `settingKey[AppenderSupplier]` where `AppenderSupplier` is:...
OS: Microsoft Windows 11 Pro 10.0.26100 Build 26100 VSCode version: 1.97.1 CodeLLDB version: 1.11.3 Compiler: N/A Debuggee: N/A I have installed the CodeLLDB extension in VSCode but every time I...
## reproduction steps Initially reported as https://github.com/scala-js/scala-js/issues/4454. See reproduction here: https://github.com/steinybot/bug-reports/tree/scalajs/non-existent-method using Scala 2.13.5 ```scala trait TwoTypeParam[X, Y] class OneTypeParam[X] extends TwoTypeParam[X, Any] trait Parent { type L = TwoTypeParam[_,...
I am trying to include some native libraries which are in a maven repository using: ``` lib/=${repo;org.weasis.thirdparty.org.opencv:libopencv_java:so:linux-x86-64;4.4.0.-dcm};lib:=true,\ lib/=${repo;org.weasis.thirdparty.org.opencv:libopencv_java:so:linux-x86;4.4.0.-dcm};lib:=true,\ lib/=${repo;org.weasis.thirdparty.org.opencv:libopencv_java:jnilib:macosx-x86-64;4.4.0.-dcm};lib:=true,\ lib/=${repo;org.weasis.thirdparty.org.opencv:opencv_java:dll:windows-x86-64;4.4.0.-dcm};lib:=true,\ lib/=${repo;org.weasis.thirdparty.org.opencv:opencv_java:dll:windows-x86;4.4.0.-dcm};lib:=true,\ ``` First of all the `4.4.0.-dcm` format really threw...
```java import org.junit.jupiter.api.Test; import com.github.javaparser.JavaParser; import com.github.javaparser.ast.expr.InstanceOfExpr; import com.github.javaparser.printer.lexicalpreservation.LexicalPreservingPrinter; public class JavaParserBugsTest { @Test void testUnsupportedOperationExceptionRemovingPattern() { var parser = new JavaParser(); var cu = parser.parse( """ public class PatternMatching_UnsupportedOperationException...
When using the `LexicalPreservingPrinter` it is not possible to remove `permits` clauses from sealed classes: ```java private static ClassOrInterfaceDeclaration removePermits(ClassOrInterfaceDeclaration declaration) { return declaration.setPermittedTypes(NodeList.nodeList()); } ``` I want to downgrade...
Version: 3.27.0 ```java package io.modelcontextprotocol.javaparser; import java.io.IOException; import org.junit.jupiter.api.Test; import com.github.javaparser.StaticJavaParser; import com.github.javaparser.ast.CompilationUnit; import com.github.javaparser.ast.expr.MethodCallExpr; import com.github.javaparser.resolution.types.ResolvedType; import com.github.javaparser.symbolsolver.JavaSymbolSolver; import com.github.javaparser.symbolsolver.resolution.typesolvers.TypeSolverBuilder; class JavaParserTests { @Test void testUnresolvedSymbol() { var typeSolver...
OSGi-ify
Would you consider providing this as an OSGi bundle?
Hi, A few users of podman are experiencing an issue where gvproxy is consuming 100% CPU on one or more threads on macOS. This typically happens after sleep and may...