Adam Gent

Results 73 issues of Adam Gent

We are using the Rocker template engine as an Annotation Code Generator (apt) which causes minor log error noise to actual serious serious break the compiler problems because SLF4J does...

This was the easiest solution I could think of and is consistent with the existing paradigm of bootstrap config but has an assumption that logging will only be done in...

Our system uses an in house message bus (the best comparison would be probably be to Vert.x EventBus). ``` java public interface MessageBus { //Pub/Sub void publish(Object o); //Request/Reply the...

question

For some reason the Eclipse compiler has issues with finding /META-INF sql files. The error: ``` [DOMA4019] The file "META-INF/--/some.sql" is not found in the classpath. The absolute path is...

The API makes it easy to increment a major,minor,patch but does not make it easy to replace any of those with an explicit amount. That is I would expect the...

For those looking for Java support mine works: https://gist.github.com/agentgt/bf2271786c250e86ab19 Unfortunately I used a different way to create the intellij theme so I couldn't use this project.

``` java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1 at org.apache.commons.csv.CSVRecord.get(CSVRecord.java:87) at be.quodlibet.boxable.datatable.DataTable.addCsvToTable(DataTable.java:290) at be.quodlibet.boxable.datatable.DataTable.addListToTable(DataTable.java:204) ``` See https://github.com/dhorions/boxable/blob/fd0012fa24e7b04320cf537e3163e5ee0c55700c/src/main/java/be/quodlibet/boxable/datatable/DataTable.java#L249 ``` if (line.size() >= i) { cellValue = line.get(i) ``` `CSVRecord`...

bug

See original issue. I'm of the high opinion that at least core configuration should not require logging otherwise you can't configure logging!!! This change adds a private logging facade for...

v2

One of the reasons why my company has not switched over to Archaius 2 is that Archaius 2 core uses SLF4J (we have our own internal config library that [I...

enhancement
v2

It appears there isn't an easy way to avoid the Archaius 2.x to 1.x bridge from printing out the following: ``` Configuration not yet initialized. Returning 'null' for environment Configuration...

v2