comparison src/luan/modules/http/LuanDomainHandler.java @ 1400:221eedb0f54e

fix inner class gc bug
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 13 Sep 2019 05:05:51 -0600
parents d8754a50adf1
children 27efb1fcbcb5
comparison
equal deleted inserted replaced
1399:38a1c1b4279a 1400:221eedb0f54e
22 this.luanInit = (Luan)cloner.clone(luanInit); 22 this.luanInit = (Luan)cloner.clone(luanInit);
23 } 23 }
24 24
25 @Override public Handler newHandler(String domain) { 25 @Override public Handler newHandler(String domain) {
26 Luan luan = newLuan(domain); 26 Luan luan = newLuan(domain);
27 return new LuanHandler(luan); 27 return new LuanHandler(luan,domain);
28 } 28 }
29 29
30 protected void newLoggerRepository(Luan luan) { 30 protected void newLoggerRepository(Luan luan) {
31 Log4j.newLoggerRepository(luan); 31 Log4j.newLoggerRepository(luan);
32 } 32 }