comparison web/src/luan/modules/web/LuanServlet.java @ 400:8f1be9704726

change LuanState.newStandard() to newInstance() which doesn't preload anything
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 28 Apr 2015 13:12:17 -0600
parents 199eb7f1b828
children f86bf532f87c
comparison
equal deleted inserted replaced
399:199eb7f1b828 400:8f1be9704726
17 this.uriPrefix = uriPrefix; 17 this.uriPrefix = uriPrefix;
18 this.luan = luan; 18 this.luan = luan;
19 } 19 }
20 20
21 public LuanServlet(String uriPrefix) { 21 public LuanServlet(String uriPrefix) {
22 this(uriPrefix,LuanState.newStandard()); 22 this(uriPrefix,LuanState.newInstance());
23 } 23 }
24 24
25 protected void service(HttpServletRequest request,HttpServletResponse response) 25 protected void service(HttpServletRequest request,HttpServletResponse response)
26 throws IOException 26 throws IOException
27 { 27 {