Adam Gent

Results 419 comments of Adam Gent

~~When you get a chance send me that project you made zipped up including the `.classpath` and `.project` and `.settings`.~~ Just paste your .classpath and .project here and I'll compare...

Alright I figured out the issue and I can see why it probably worked for you. Heres the deal if you touch the Dao by saving it (files marked w/...

How this came about is because there is some bad attempt of escaping: ```java public void addListToTable(List data, Boolean hasHeader) throws IOException { char separator = ';'; if (data ==...

Hopefully this is related and might be helpful to others. They only way I can reliably get records to work is by turning off all Auto Detection (`@JsonAutoDetect`) and manually...

Not the logging binding but the configuration. For example lets say you are publishing messages to Kafka or RabbitMQ (e.g. an Appender that needs config) you need the configuration of...

Also Typesafe config does zero logging so clearly a configuration framework can be written with out needing logging.

I figured out a simpler way that requires less code if you want to get the dependency to SLF4j: ```java package com.netflix.archaius.api.log; import java.util.ServiceLoader; import org.slf4j.ILoggerFactory; import org.slf4j.Logger; import org.slf4j.helpers.NOPLoggerFactory;...

See my comment here: https://github.com/Randgalt/record-builder/issues/106#issuecomment-1120409923 Pasted below here for others: EDIT the below is not for runtime support (e.g. `requireNonNull` but to aid static analysis tools like checker and eclipse...

I forgot to add that there are three "use cases" of null handling you should consider: 1. Compile time Static Analysis (what #106 was originally about) 1. Runtime Assertion (requireNonNull)...

What happens when you have name conflicts? A dumb example is `com.stuff.String` and `java.lang.String`. At some point I assume you will need to print the FQN? No it will not...