mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-01 22:14:01 +03:00
Update FileInitializer.java
This commit is contained in:
parent
11c5ab5464
commit
1afadda38b
1 changed files with 6 additions and 0 deletions
|
@ -22,6 +22,12 @@ public FileInitializer(SslContext sslCtx, File base, boolean outDirs) {
|
|||
this.outDirs = outDirs;
|
||||
}
|
||||
|
||||
public FileInitializer(File base, boolean outDirs) {
|
||||
this.sslCtx = null;
|
||||
this.base = base;
|
||||
this.outDirs = outDirs;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void initChannel(SocketChannel ch) {
|
||||
ChannelPipeline pipeline = ch.pipeline();
|
||||
|
|
Loading…
Reference in a new issue