remove unused md5 from ViewFile servlet params

pull/27/head
reger 9 years ago
parent e163ea88f6
commit 1160b13172

@ -402,7 +402,6 @@ public class ViewFile {
prop.putHTML("error_dc_creator", "");
prop.putHTML("error_dc_publisher", "");
prop.putHTML("error_dc_subject", "");
prop.put("error_md5", "");
prop.put("error_lat", "");
prop.put("error_lon", "");
prop.put("error_language", "");
@ -424,7 +423,6 @@ public class ViewFile {
prop.putHTML("error_dc_creator", urlEntry.dc_creator());
prop.putHTML("error_dc_publisher", urlEntry.dc_publisher());
prop.putHTML("error_dc_subject", urlEntry.dc_subject());
prop.put("error_md5", urlEntry.md5());
prop.put("error_lat", urlEntry.lat());
prop.put("error_lon", urlEntry.lon());
prop.put("error_language", urlEntry.language());

@ -335,6 +335,10 @@ public class URIMetadataNode extends SolrDocument /* implements Comparable<URIMe
return x;
}
/**
* @deprecated obsolete, never assigned a value
*/
@Deprecated
public String md5() {
return getString(CollectionSchema.md5_s);
}

Loading…
Cancel
Save