David M. Lloyd

Results 306 comments of David M. Lloyd

It'll be a couple of weeks before I can get back to this, so I'm putting it in draft for now.

The umlauts aren't the problem, it's more likely that these list entries all get concatenated into one giant string (joined by `,`) and that string is too big to represent...

@ropalka commented ATM the hardcoded value in org/jboss/modules/maven/MavenSettings.java is "https://repo1.maven.org/maven2/"

It's more or less permanently broken until we can address this at a lower level. The primary lesson being "never add a syntax preprocessor to an established syntax without understanding...

The additional checks which could be represented with literal invokables to resolve #164 are: * `NullCheck` * `ArrayIndexRangeCheck` * `NegativeArraySizeCheck` * `ZeroDivisorCheck`

I'll start by saying you can probably get the effect you want by explicitly specifying the converter to use; use the `@WithConverter` type annotation on your property for this purpose....

> I see. For what it's worth I'm trying to integrate smallrye config with our current projects, which are Scala projects. Converter induction (the ability to form a `Converter` assuming...

Right, it's not ideal but it does the job for limited cases.

> > I'll start by saying you can probably get the effect you want by explicitly specifying the converter to use; use the `@WithConverter` type annotation on your property for...