Skip to content

Commit

Permalink
methods are now protected (LinkedIn request)
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Jun 12, 2011
1 parent 2269d50 commit d4111e4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class ClientMain implements Startable
moveToState(agent, mountPoint, 'running')
}

private def moveToState(agent, mountPoint, toState)
protected def moveToState(agent, mountPoint, toState)
{
def state = agent.getState(mountPoint: mountPoint)

Expand Down Expand Up @@ -409,12 +409,12 @@ class ClientMain implements Startable
}
}

private def extractArgs(def config)
protected def extractArgs(def config)
{
return extractArgs(Config.getOptionalString(config, 'args', '[:]'))
}

private def extractArgs(String args)
protected def extractArgs(String args)
{
return new GroovyShell().evaluate(args)
}
Expand Down

0 comments on commit d4111e4

Please sign in to comment.