Author: rhauch
Date: 2009-08-06 13:42:22 -0400 (Thu, 06 Aug 2009)
New Revision: 1155
Modified:
trunk/dna-graph/src/main/java/org/jboss/dna/graph/Graph.java
Log:
Removed simulated synthetic access error by changing private variable to protected
Modified: trunk/dna-graph/src/main/java/org/jboss/dna/graph/Graph.java
===================================================================
--- trunk/dna-graph/src/main/java/org/jboss/dna/graph/Graph.java 2009-08-06 15:31:03 UTC
(rev 1154)
+++ trunk/dna-graph/src/main/java/org/jboss/dna/graph/Graph.java 2009-08-06 17:42:22 UTC
(rev 1155)
@@ -163,7 +163,7 @@
private final String sourceName;
private final RepositoryConnectionFactory connectionFactory;
- private final ExecutionContext context;
+ protected final ExecutionContext context;
protected final RequestBuilder requests;
protected final Conjunction<Graph> nextGraph;
private Workspace currentWorkspace;
@@ -4225,7 +4225,7 @@
* @return the interface for additional requests or actions
*/
Next as( Name newName );
-
+
/**
* Finish the request by specifying the name of the new child node. This method
indicates that the child should be added
* as a new node with the given name at the end of the parents children
@@ -4233,7 +4233,7 @@
* @param newName the new name
* @return the interface for additional requests or actions
*/
- Next as( String newName );
+ Next as( String newName );
}
/**
Show replies by date