diff --git a/src/components/util/workqueue.rs b/src/components/util/workqueue.rs index ec7022d546b..409092bc171 100644 --- a/src/components/util/workqueue.rs +++ b/src/components/util/workqueue.rs @@ -189,9 +189,9 @@ impl<'a,QUD,WUD:Send> WorkerProxy<'a,QUD,WUD> { /// A work queue on which units of work can be submitted. pub struct WorkQueue { /// Information about each of the workers. - pub workers: ~[WorkerInfo], + workers: ~[WorkerInfo], /// A port on which deques can be received from the workers. - pub port: Receiver>, + port: Receiver>, /// The amount of work that has been enqueued. pub work_count: uint, /// Arbitrary user data.