Skip to content
Snippets Groups Projects
Commit dba4266b authored by HongKee Moon's avatar HongKee Moon
Browse files

Format code

parent b23527df
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ public class BigDataServer
server.join();
}
static private ContextHandlerCollection createHandlers( String baseURL, HashMap< String, String > dataSet ) throws SpimDataException
static private ContextHandlerCollection createHandlers( final String baseURL, final HashMap< String, String > dataSet ) throws SpimDataException
{
final ContextHandlerCollection handlers = new ContextHandlerCollection();
......
......@@ -34,7 +34,7 @@ public class ManagerHandler extends ContextHandler
private final ConnectorStatistics connectorStats;
public ManagerHandler( String baseURL, Server server, ConnectorStatistics connectorStats, StatisticsHandler statHandler, ContextHandlerCollection handlers ) throws IOException, URISyntaxException
public ManagerHandler( final String baseURL, final Server server, final ConnectorStatistics connectorStats, final StatisticsHandler statHandler, ContextHandlerCollection handlers ) throws IOException, URISyntaxException
{
this.baseURL = baseURL;
this.server = server;
......@@ -115,7 +115,7 @@ public class ManagerHandler extends ContextHandler
private String getContexts()
{
StringBuilder sb = new StringBuilder();
for ( Handler handler : server.getChildHandlersByClass( CellHandler.class ) )
for ( final Handler handler : server.getChildHandlersByClass( CellHandler.class ) )
{
CellHandler contextHandler = null;
if ( handler instanceof CellHandler )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment