Skip to content

Commit

Permalink
Fixed typographical error
Browse files Browse the repository at this point in the history
  • Loading branch information
Petra Selmer committed Jun 2, 2016
1 parent 534d4aa commit 480f523
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -97,19 +97,19 @@ public boolean doesUsernameMatch( String username )
@Override
public boolean allowsReads()
{
return getAccesMode().allowsReads();
return getAccessMode().allowsReads();
}

@Override
public boolean allowsWrites()
{
return getAccesMode().allowsWrites();
return getAccessMode().allowsWrites();
}

@Override
public boolean allowsSchemaWrites()
{
return getAccesMode().allowsSchemaWrites();
return getAccessMode().allowsSchemaWrites();
}

@Override
Expand All @@ -123,7 +123,7 @@ Subject getSubject()
return subject;
}

private AccessMode.Static getAccesMode()
private AccessMode.Static getAccessMode()
{
if ( subject.isAuthenticated() )
{
Expand Down

0 comments on commit 480f523

Please sign in to comment.