Christopher Ng

Results 26 issues of Christopher Ng

It's been happening for over a year now, but I don't change things much so it hasn't bothered me hugely. Any time I add a new element (curve or sensor)...

is there support (or a suggestion for how to implement) JDBC batching with `SafeSql`?

### New feature, improvement proposal It would be nice to have an option to not overwrite the `resume` state. It happens sometimes that b/c reasons I have to run a...

enhancement

A couple of scenarios: ### `public` methods on inner `private` classes ```java class Outside { private class Inside { public void doSomething() { // ... } } } ``` I'm...

Not sure if this is feasible to address, but e.g. with lombok you can do ``` @RequiredArgsConstructor class MyClass { @SpecialString final String injectedString; } ``` and configure it to...

e.g. ``` void beforeEach(@Named("specialTest") TestThing injectedTestThing) { } ```