Commit 2bef5751 by Tuomas Riihimäki

Remove java 1.7 style list init to allow for 1.6 compile level

1 parent 620685f7
......@@ -28,7 +28,7 @@ public class NetworkAssociationInfolistResponseRoot {
private List<NetworkAssociationInfoPojo> associations;
public NetworkAssociationInfolistResponseRoot() {
this.associations = new ArrayList<>();
this.associations = new ArrayList<NetworkAssociationInfoPojo>();
}
public List<NetworkAssociationInfoPojo> getAssociations() {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!