Revision 10147
Added by Jing Tao almost 8 years ago
src/edu/ucsb/nceas/metacat/dataone/D1NodeService.java | ||
---|---|---|
121 | 121 |
protected MetacatHandler handler; |
122 | 122 |
|
123 | 123 |
/* parameters set in the incoming request */ |
124 |
private Hashtable<String, String[]> params; |
|
124 |
//private Hashtable<String, String[]> params;
|
|
125 | 125 |
|
126 | 126 |
/** |
127 | 127 |
* limit paged results sets to a configured maximum |
... | ... | |
1448 | 1448 |
|
1449 | 1449 |
} |
1450 | 1450 |
|
1451 |
params = new Hashtable<String, String[]>(); |
|
1451 |
Hashtable<String, String[]> params = new Hashtable<String, String[]>();
|
|
1452 | 1452 |
String[] action = new String[1]; |
1453 | 1453 |
action[0] = insertOrUpdate; |
1454 | 1454 |
params.put("action", action); |
Also available in: Unified diff
Change the param from the class field to a local variable.