cleaning up build warnings

This commit is contained in:
Joakim Erdfelt 2014-12-19 13:57:49 -07:00
parent 1f3097ff16
commit 4435ba3c2b
2 changed files with 2 additions and 38 deletions

View File

@ -114,8 +114,8 @@ public class MemoryUsageTest
long heapUsed = heapAfter.getUsed() - heapBefore.getUsed();
long nonHeapUsed = nonHeapAfter.getUsed() - nonHeapBefore.getUsed();
// System.out.println("heapUsed = " + heapUsed);
// System.out.println("nonHeapUsed = " + nonHeapUsed);
System.out.println("heapUsed = " + heapUsed);
System.out.println("nonHeapUsed = " + nonHeapUsed);
// new CountDownLatch(1).await();
// Assume no more than 25 KiB per session pair (client and server).

View File

@ -1,36 +0,0 @@
//
// ========================================================================
// 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.websocket.common.scopes;
import org.eclipse.jetty.websocket.api.UpgradeRequest;
import org.eclipse.jetty.websocket.api.UpgradeResponse;
/**
* Defined Scope for a WebSocket Handshake/Upgrade
*/
public interface WebSocketHandshakeScope
{
Class<?> getPotentialEndpointClass();
UpgradeRequest getHandshakeRequest();
UpgradeResponse getHandshakeResponse();
WebSocketContainerScope getContainerScope();
}