Skip to content

Commit

Permalink
Made static members package private
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/directmemory/lightning/trunk@1407045 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
noctarius committed Nov 8, 2012
1 parent dd4d7de commit 7213f66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -35,9 +35,9 @@ public abstract class GCJInstantiatorBase
implements ObjectInstantiator
{

protected static Method newObjectMethod = null;
static Method newObjectMethod = null;

protected static ObjectInputStream dummyStream;
static ObjectInputStream dummyStream;

private static class DummyStream
extends ObjectInputStream
Expand Down
Expand Up @@ -34,7 +34,7 @@ public abstract class Sun13InstantiatorBase
implements ObjectInstantiator
{

protected static Method allocateNewObjectMethod = null;
static Method allocateNewObjectMethod = null;

private static void initialize()
{
Expand Down

0 comments on commit 7213f66

Please sign in to comment.