()
| 310 | } |
| 311 | |
| 312 | private static void loadNetty() { |
| 313 | ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.DISABLED); |
| 314 | if (System.getProperty("io.netty.allocator.type") == null) { |
| 315 | System.setProperty("io.netty.allocator.type", PlatformDependent.isAndroid() ? "unpooled" : "pooled"); |
| 316 | } |
| 317 | MCPipeline.useOptimizedPipeline(); |
| 318 | CLIENT_CHANNELS = new DefaultChannelGroup(GlobalEventExecutor.INSTANCE); |
| 319 | } |
| 320 | |
| 321 | public static File getCwd() { |
| 322 | return CWD; |