~jgillis/apache-arrow-reading-writing

d2b196f222e9567ca790b24d642cc12ca7b1331c — Joris Gillis 4 years ago bec00de
Reformatting code
1 files changed, 1 insertions(+), 2 deletions(-)

M src/main/java/org/example/arrow/io/GenerateRandomDataApplication.java
M src/main/java/org/example/arrow/io/GenerateRandomDataApplication.java => src/main/java/org/example/arrow/io/GenerateRandomDataApplication.java +1 -2
@@ 44,8 44,7 @@ public class GenerateRandomDataApplication {
     * @throws IOException Thrown if something goes wrong while writing to file 'people.arrow'.
     */
    void writeToArrowFile(Person[] people) throws IOException {
        new ChunkedWriter<>(CHUNK_SIZE, this::vectorizePerson)
                .write(new File("people.arrow"), people);
        new ChunkedWriter<>(CHUNK_SIZE, this::vectorizePerson).write(new File("people.arrow"), people);
    }

    /**