Skip to content

Commit dba4266

Browse files
committed
Format code
1 parent b23527d commit dba4266

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: src/main/java/bdv/server/BigDataServer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static void main( final String[] args ) throws Exception
6666
server.join();
6767
}
6868

69-
static private ContextHandlerCollection createHandlers( String baseURL, HashMap< String, String > dataSet ) throws SpimDataException
69+
static private ContextHandlerCollection createHandlers( final String baseURL, final HashMap< String, String > dataSet ) throws SpimDataException
7070
{
7171
final ContextHandlerCollection handlers = new ContextHandlerCollection();
7272

Diff for: src/main/java/bdv/server/ManagerHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class ManagerHandler extends ContextHandler
3434

3535
private final ConnectorStatistics connectorStats;
3636

37-
public ManagerHandler( String baseURL, Server server, ConnectorStatistics connectorStats, StatisticsHandler statHandler, ContextHandlerCollection handlers ) throws IOException, URISyntaxException
37+
public ManagerHandler( final String baseURL, final Server server, final ConnectorStatistics connectorStats, final StatisticsHandler statHandler, ContextHandlerCollection handlers ) throws IOException, URISyntaxException
3838
{
3939
this.baseURL = baseURL;
4040
this.server = server;
@@ -115,7 +115,7 @@ private String getHtml()
115115
private String getContexts()
116116
{
117117
StringBuilder sb = new StringBuilder();
118-
for ( Handler handler : server.getChildHandlersByClass( CellHandler.class ) )
118+
for ( final Handler handler : server.getChildHandlersByClass( CellHandler.class ) )
119119
{
120120
CellHandler contextHandler = null;
121121
if ( handler instanceof CellHandler )

0 commit comments

Comments
 (0)