comparison src/luan/modules/url/LuanUrl.java @ 1392:002152af497a

hosted postgres
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 06 Sep 2019 00:19:47 -0600
parents eb8b35dccd99
children 27efb1fcbcb5
comparison
equal deleted inserted replaced
1391:94f48cc76de8 1392:002152af497a
157 } catch(IOException e) { 157 } catch(IOException e) {
158 throw new RuntimeException(e); 158 throw new RuntimeException(e);
159 } 159 }
160 } 160 }
161 } 161 }
162 Integer timeout = Utils.removeInt(map,"time_out"); 162 Integer timeout = Utils.removeInteger(map,"time_out");
163 if( timeout != null ) 163 if( timeout != null )
164 this.timeout = timeout; 164 this.timeout = timeout;
165 Utils.checkEmpty(map); 165 Utils.checkEmpty(map);
166 } 166 }
167 this.url = url; 167 this.url = url;