Petr Janeček

Results 19 issues of Petr Janeček

`LineReader` currently only has the `readLine()` method. However, already since Java 8 there's [`lines()`](https://docs.oracle.com/en/java/javase/18/docs/api/java.base/java/io/BufferedReader.html#lines()), too. Not to mention that it'd be nice to also maybe have `readAllLines()` and maybe even...

type=addition
package=io
P4

**Is your feature request related to a problem? Please describe.** I'm trying to serialize a Record that evolves - new components are being added to it. **Describe the solution you'd...

feature request
help wanted

**Prettier-Java 1.6.1** Related to https://github.com/jhipster/prettier-java/issues/77. In this case we're getting compilable code, it's just sub-ideal. ```sh # Options (if any): --print-width 140 ``` **Input:** ```java PreparedStatement statement = connection.prepareStatement( "INSERT...

area: enhancement :wrench:

Binary operators are being wrapped in a Java-uncommon way. Binary operator wrapping/indentation was, as far as I can see, last overhauled in https://github.com/jhipster/prettier-java/pull/255 which "fixed" three issues. However, the discussion...

Say we have a node that SUMs all children's values. Now, we need to copy the sum and send it to someone via e-mail. We do not want to send...

enhancement

While doing a parallel build (see https://cwiki.apache.org/confluence/display/MAVEN/Parallel+builds+in+Maven+3), this warning pops up: ``` [WARNING] ***************************************************************** [WARNING] * Your build is requesting parallel execution, but project * [WARNING] * contains the following...

help wanted

I'm using the `org.codehaus.mojo.gwt-maven-plugin` plugin in version `2.8.2`. This is my configuration: ```xml com.mycompany.myproject.gwt.App -Xmx2G app storm-core-1.0.1.jar ``` the interesting part is the `runClasspathExclude`. When I run GWT Development Mode,...

I have a GWT 2.8.2 project and downloaded the current plugin's snapshot from https://storage.googleapis.com/gwt-eclipse-plugin/v3/snapshot. My versions: - GWT 2.8.2 SDK - 2.8.0.201803211650 - GWT Eclipse Plugin - 3.0.0.201803211650 My project...

https://github.com/quarkusio/qson The new Quarkus library. It, again, claims to be fast: https://bill.burkecentral.com/2020/12/15/qson-new-java-json-parser-for-quarkus/

Currently the library can only use `RedisClient` and `JedisPool`, but for Redis Cluster there are `RedisClusterClient` and/or `JedisCluster`. Also the Spring `RedisTemplate`, which theoretically abstracts over the issue, uses the...