mirror of
https://github.com/pfalstad/circuitjs1.git
synced 2026-02-20 01:41:22 +01:00
The HashMap in QueryParameters is now strongly typed
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user