You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by dj...@apache.org on 2019/04/08 09:10:30 UTC

[gora] branch master updated: GORA-549: Remove PersistentBase extending java.io.Externalizable

This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
     new ab40ead  GORA-549: Remove PersistentBase extending java.io.Externalizable
     new 75997da  Merge pull request #157 from djkevincr/GORA-549
ab40ead is described below

commit ab40eadf2da890903f4c5d74d0cb6f5459a5f995
Author: Kevin Ratnasekera <dj...@yahoo.com>
AuthorDate: Wed Apr 3 00:24:48 2019 +0530

    GORA-549: Remove PersistentBase extending java.io.Externalizable
---
 .../src/main/java/org/apache/gora/persistency/impl/PersistentBase.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gora-core/src/main/java/org/apache/gora/persistency/impl/PersistentBase.java b/gora-core/src/main/java/org/apache/gora/persistency/impl/PersistentBase.java
index e7f9929..7bb9e63 100644
--- a/gora-core/src/main/java/org/apache/gora/persistency/impl/PersistentBase.java
+++ b/gora-core/src/main/java/org/apache/gora/persistency/impl/PersistentBase.java
@@ -37,7 +37,7 @@ import org.apache.gora.persistency.Persistent;
 */
 @TypeInfo(PersistentTypeInfoFactory.class)
 public abstract class PersistentBase extends SpecificRecordBase implements
-    Persistent, java.io.Externalizable {
+        Persistent {
 
   /** Bytes used to represent weather or not a field is dirty. */
   private java.nio.ByteBuffer __g__dirty;