Github user renato2099 commented on a diff in the pull request:
https://github.com/apache/gora/pull/131#discussion_r174715638
--- Diff: gora-core/src/main/java/org/apache/gora/avro/store/AvroStore.java
---
@@ -50,8 +48,7 @@
* An adapter DataStore for binary-compatible Avro serializations.
* AvroDataStore supports Binary and JSON serializations.
*/
-public class AvroStore<K, T extends PersistentBase>
-extends FileBackedDataStoreBase<K, T> implements Configurable {
+public class AvroStore<K, T extends PersistentBase> extends
FileBackedDataStoreBase<K, T> implements Configurable {
--- End diff --
nitpick:
Didn't we have a format checker to not to allow lines longer than XX
characters?
---