Skip to content

Commit

Permalink
resolveInstanceOf in BlueprintsPersistenceBackend should be public (i…
Browse files Browse the repository at this point in the history
…t is called by other applications that only maintain a specific Blueprints Store
  • Loading branch information
gdaniel committed Jan 25, 2017
1 parent ddda482 commit f2ba2e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ private void setMappedVertex(Vertex vertex, PersistentEObject object) {
*
* @return an {@link EClass} representing the metaclass of the element
*/
private EClass resolveInstanceOf(Vertex vertex) {
public EClass resolveInstanceOf(Vertex vertex) {
EClass eClass = null;
Vertex eClassVertex = Iterables.getOnlyElement(vertex.getVertices(Direction.OUT, KEY_INSTANCE_OF), null);
if (nonNull(eClassVertex)) {
Expand Down

0 comments on commit f2ba2e9

Please sign in to comment.