Ladislav Thon

Results 347 comments of Ladislav Thon

OK, thanks. I was more interested in hearing about any possible issues when running the application, but I realized that there's most likely nothing in WildFly bothering about type variable...

OK, I fixed the case when Jandex 3.1.3-SNAPSHOT couldn't read an index generated by 3.0.5, that was some poor handling of versioning on my side. Thanks for highlighting that.

If indexing takes longer time, pregenerating the index (using the Maven plugin for example) is a good choice indeed.

There's one more PR that needs some more work (#361), so it will take a bit more time, but 3.2.0 is near indeed.

`Arc.container()` can only return `null` in two situations: - during startup, when the CDI container is not started yet - during shutdown, when the CDI container has already shut down...

My point was more that there's _multiple_ startup events getting fired and if you start an action based on one of the non-CDI-startup events, I don't think you can expect...

Funny thing is that the implementation of `RoutingContext.normalizedPath()` is super simple and basically only calls to an utility method that is _not_ in Vert.x Web, but in Vert.x Core. I...

The way the Gizmo 2 API is structured, I believe it makes most sense to create an intermediate representation that describes what code should be generated, and only after that...

> > I believe it makes most sense to create an intermediate representation that describes what code should be generated, and only after that is constructed, do the generation. >...