Skip to content
Snippets Groups Projects
Commit 835be293 authored by Or Cohen's avatar Or Cohen Committed by Pekka Enberg
Browse files

java: Shrew "uses unchecked or unsafe operations"

parent 905d0263
No related branches found
No related tags found
No related merge requests found
......@@ -585,7 +585,7 @@ public class Shrew implements Runnable {
* order). This method ignores format errors.
*/
private static Hashtable parseQueryString(String query) {
Hashtable ht = new Hashtable();
Hashtable<String, String[]> ht = new Hashtable<String, String[]>();
if (query == null)
return ht;
StringTokenizer st = new StringTokenizer(query, "&");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment