The following document contains the results of PMD's CPD 4.2.2.
| File | Line |
|---|---|
| org/apache/tiles/portlet/context/PortletInitParamMap.java | 71 |
| org/apache/tiles/portlet/context/PortletParamMap.java | 71 |
return (request.getParameter(key(key)) != null);
}
/** {@inheritDoc} */
public boolean containsValue(Object value) {
Iterator<String> values = values().iterator();
while (values.hasNext()) {
if (value.equals(values.next())) {
return (true);
}
}
return (false);
}
/** {@inheritDoc} */
public Set<Map.Entry<String, String>> entrySet() {
Set<Map.Entry<String, String>> set = new HashSet<Map.Entry<String, String>>();
Enumeration<String> keys = request.getParameterNames();
| |