You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by le...@apache.org on 2015/09/10 09:18:07 UTC

[1/2] gora git commit: Erroneous exception message: "cannot write to DataOutput of instance:" at readObject method of IOUtils.java is fixed.

Repository: gora
Updated Branches:
  refs/heads/master 446b46a81 -> 9482e1008


Erroneous exception message: "cannot write to DataOutput of instance:" at readObject method of IOUtils.java is fixed.


Project: http://git-wip-us.apache.org/repos/asf/gora/repo
Commit: http://git-wip-us.apache.org/repos/asf/gora/commit/4a7aa37d
Tree: http://git-wip-us.apache.org/repos/asf/gora/tree/4a7aa37d
Diff: http://git-wip-us.apache.org/repos/asf/gora/diff/4a7aa37d

Branch: refs/heads/master
Commit: 4a7aa37de90a03e03decb4deb24850d75147ce76
Parents: 446b46a
Author: Furkan KAMACI <fu...@gmail.com>
Authored: Sat Sep 5 21:57:31 2015 +0300
Committer: Furkan KAMACI <fu...@gmail.com>
Committed: Sun Sep 6 00:11:00 2015 +0300

----------------------------------------------------------------------
 gora-core/src/main/java/org/apache/gora/util/IOUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/gora/blob/4a7aa37d/gora-core/src/main/java/org/apache/gora/util/IOUtils.java
----------------------------------------------------------------------
diff --git a/gora-core/src/main/java/org/apache/gora/util/IOUtils.java b/gora-core/src/main/java/org/apache/gora/util/IOUtils.java
index bc60360..8d44efc 100644
--- a/gora-core/src/main/java/org/apache/gora/util/IOUtils.java
+++ b/gora-core/src/main/java/org/apache/gora/util/IOUtils.java
@@ -79,7 +79,7 @@ public class IOUtils {
         return obj;
       }
     }
-    throw new IOException("cannot write to DataOutput of instance:"
+    throw new IOException("cannot read from DataInput of instance:"
         + in.getClass());
   }
 


[2/2] gora git commit: GORA-438 Erroneous Exception Message at IOUtils.java this closes #42

Posted by le...@apache.org.
GORA-438 Erroneous Exception Message at IOUtils.java this closes #42


Project: http://git-wip-us.apache.org/repos/asf/gora/repo
Commit: http://git-wip-us.apache.org/repos/asf/gora/commit/9482e100
Tree: http://git-wip-us.apache.org/repos/asf/gora/tree/9482e100
Diff: http://git-wip-us.apache.org/repos/asf/gora/diff/9482e100

Branch: refs/heads/master
Commit: 9482e10089fa3fe6c12450a690d7288355eb9d29
Parents: 4a7aa37
Author: Lewis John McGibbney <le...@jpl.nasa.gov>
Authored: Thu Sep 10 00:19:19 2015 -0700
Committer: Lewis John McGibbney <le...@jpl.nasa.gov>
Committed: Thu Sep 10 00:19:19 2015 -0700

----------------------------------------------------------------------
 CHANGES.txt | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/gora/blob/9482e100/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 680baf5..6469474 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,7 +2,11 @@
  ==CHANGES.txt
  =======================================================================
 
-Apache Gora 0.6 Release - 05/09/2015 (dd/mm/yyyy)
+Current Development
+
+* GORA-438 Erroneous Exception Message at IOUtils.java (Furkan KAMACI via lewismc)
+
+Apache Gora 0.6.1 Release - 05/09/2015 (dd/mm/yyyy)
 Release Report - http://s.apache.org/l69
 
 * GORA-436 Improve Source Code as Java 7 Compatible (Furkan KAMACI via lewismc)