Magnolia.K

Results 73 comments of Magnolia.K

This error does not occur when installing using Coursier. Coursier's Giter8 configuration file specifies org.slf4j:slf4j-nop, but there is no opportunity to install this in the shell for bootstrap https://github.com/coursier/apps/blob/master/apps/resources/giter8.json

The documentation says to "use jetty_home".

@earldouglas Yes, the jetty-home-xx.xx.x.tar.gz distributed in the maven repository is the file for local installation. The documentation also describes how to use the installation directory, so the procedure should be...

@kardapoltsev I think it is appropriate to define a case class that matches the order of the arguments you intend, map it, and then match the pattern. What is the...

Perhaps the following issues may be relevant Is there another version of Json4s in existence? https://github.com/json4s/json4s/issues/628

@klawoj I couldn't reproduce with version 3.6.7 and 3.7.0-M2. Can you provide a set of reproducible projects? ```scala scala> import org.json4s._ import org.json4s._ scala> import org.json4s.jackson.JsonMethods._ import org.json4s.jackson.JsonMethods._ scala> implicit...

The issue is the code below. When formats.strictOptionParsing is false, the exception is replaced with None. https://github.com/json4s/json4s/blob/715bc01391c123fa55bcc6391a3def17ad02927e/core/src/main/scala/org/json4s/Extraction.scala#L53-L54 JNothing is returned when the specified key does not exist. But there is...

In the following code, `toSome` is called and `JNothing` is converted to `None`, so `None` is returned as it is, but originally it seems that the correct behavior is to...

Probably if the code changes like this, the behavior should be the same with `extract` and `extractOpt`. ``` @@ -374,7 +374,12 @@ object Extraction { Right(extract(json, scalaType.typeArgs(1))) })).getOrElse(fail("Expected value but...

This is occurring because the XML label is not implemented as an Array unless all the labels are the same. https://github.com/json4s/json4s/blob/715bc01391c123fa55bcc6391a3def17ad02927e/xml/src/main/scala/org/json4s/Xml.scala#L133-L141 The correct implementation should be to create an Array...