Skip to content

Commit

Permalink
Missed making a variable private
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Ganelin committed Jan 16, 2015
1 parent 6444391 commit b8c05cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class TaskMetrics extends Serializable {
*/
private var _hostname: String = _
def hostname = _hostname
def setHostname(value : String) = _hostname = value
private[spark] def setHostname(value : String) = _hostname = value

/**
* Time taken on the executor to deserialize this task
Expand Down

0 comments on commit b8c05cb

Please sign in to comment.