The HashMap in QueryParameters is now strongly typed

This commit is contained in:
Mervill
2022-08-27 16:02:24 -07:00
parent 864d2d234f
commit f75b61ac8d

View File

@@ -20,12 +20,11 @@
package com.lushprojects.circuitjs1.client;
import java.util.HashMap;
import java.util.Map;
import com.google.gwt.http.client.URL;
public class QueryParameters
{
private Map map = new HashMap();
private HashMap<String, String> map = new HashMap<String, String>();
public QueryParameters()
{