fixed refactor file header

This commit is contained in:
Greg Wilkins 2014-12-17 16:36:46 +01:00
parent cdd2b0a9d2
commit bbd2ba60e7
2 changed files with 20 additions and 2 deletions

View File

@ -1,3 +1,21 @@
//
// ========================================================================
// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package org.eclipse.jetty.io;
import java.io.Closeable;
@ -589,7 +607,7 @@ public class ManagedSelector extends AbstractLifeCycle implements Runnable, Dump
{
this.channel = channel;
this.attachment = attachment;
this.timeout = ManagedSelector.this._selectorManager.scheduler.schedule(new ConnectTimeout(this), ManagedSelector.this._selectorManager.getConnectTimeout(), TimeUnit.MILLISECONDS);
this.timeout = ManagedSelector.this._selectorManager.getScheduler().schedule(new ConnectTimeout(this), ManagedSelector.this._selectorManager.getConnectTimeout(), TimeUnit.MILLISECONDS);
}
@Override

View File

@ -51,7 +51,7 @@ public abstract class SelectorManager extends AbstractLifeCycle implements Dumpa
protected static final Logger LOG = Log.getLogger(SelectorManager.class);
private final Executor executor;
final Scheduler scheduler;
private final Scheduler scheduler;
private final ManagedSelector[] _selectors;
private long _connectTimeout = DEFAULT_CONNECT_TIMEOUT;
int _priorityDelta;