mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +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;
|
this.outDirs = outDirs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public FileInitializer(File base, boolean outDirs) {
|
||||||
|
this.sslCtx = null;
|
||||||
|
this.base = base;
|
||||||
|
this.outDirs = outDirs;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initChannel(SocketChannel ch) {
|
public void initChannel(SocketChannel ch) {
|
||||||
ChannelPipeline pipeline = ch.pipeline();
|
ChannelPipeline pipeline = ch.pipeline();
|
||||||
|
|
Loading…
Reference in a new issue