 Chromium Code Reviews
 Chromium Code Reviews Issue 10871071:
  - Change "static final" to "static const" in the tests/ directory.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 10871071:
  - Change "static final" to "static const" in the tests/ directory.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: tests/standalone/io/socket_many_connections_test.dart | 
| =================================================================== | 
| --- tests/standalone/io/socket_many_connections_test.dart (revision 11349) | 
| +++ tests/standalone/io/socket_many_connections_test.dart (working copy) | 
| @@ -8,7 +8,7 @@ | 
| #import("dart:isolate"); | 
| #source("testing_server.dart"); | 
| -final CONNECTIONS = 200; | 
| +const CONNECTIONS = 200; | 
| class SocketManyConnectionsTest { |