File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
src/main/java/info/unterrainer/commons/httpserver Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1717
1818 <modelVersion >4.0.0</modelVersion >
1919 <artifactId >http-server</artifactId >
20- <version >0.1.12 </version >
20+ <version >0.1.13 </version >
2121 <name >HttpServer</name >
2222 <packaging >jar</packaging >
2323
Original file line number Diff line number Diff line change 22
33public class Information {
44 public static final String name = "Http-Server" ;
5- public static final String buildTime = "2020-12-10T07:26:30Z " ;
6- public static final String pomVersion = "0.1.11 " ;
5+ public static final String buildTime = "2020-12-14T14:13:09Z " ;
6+ public static final String pomVersion = "0.1.12 " ;
77}
Original file line number Diff line number Diff line change 11package info .unterrainer .commons .httpserver .daos ;
22
3+ import java .util .HashMap ;
34import java .util .Map ;
45
56import lombok .AllArgsConstructor ;
@@ -14,4 +15,9 @@ public class ParamMap {
1415
1516 @ Singular
1617 private Map <String , Object > parameters ;
18+
19+ @ Override
20+ protected ParamMap clone () throws CloneNotSupportedException {
21+ return new ParamMap (new HashMap <String , Object >(parameters ));
22+ }
1723}
You can’t perform that action at this time.
0 commit comments