removes some deprecation-warnings

pull/389/head
sgaebel 5 years ago
parent dd9d4b1188
commit 4a495df63a

@ -81,11 +81,11 @@ public class FlatJSONResponseWriter implements QueryResponseWriter, EmbeddedSolr
for (int i = 0; i < sz; i++) { for (int i = 0; i < sz; i++) {
int id = iterator.nextDoc(); int id = iterator.nextDoc();
Document doc = searcher.doc(id); Document doc = searcher.doc(id);
writeDoc(writer, schema, null, doc.getFields(), (includeScore ? iterator.score() : 0.0f), includeScore); writeDoc(writer, schema, doc.getFields());
} }
} }
private static final void writeDoc(final Writer writer, final IndexSchema schema, final String name, final List<IndexableField> fields, final float score, final boolean includeScore) throws IOException { private static final void writeDoc(final Writer writer, final IndexSchema schema, final List<IndexableField> fields) throws IOException {
JSONObject json = new JSONObject(); JSONObject json = new JSONObject();
int sz = fields.size(); int sz = fields.size();
@ -110,7 +110,7 @@ public class FlatJSONResponseWriter implements QueryResponseWriter, EmbeddedSolr
JSONObject j = new JSONObject(); JSONObject j = new JSONObject();
String sv = value.stringValue(); String sv = value.stringValue();
setValue(j, type.getTypeName(), "x", sv); //sf.write(this, null, f1); setValue(j, type.getTypeName(), "x", sv); //sf.write(this, null, f1);
a.put(j.get("x")); a.put(j.opt("x"));
} else { } else {
setValue(json, type.getTypeName(), value.name(), value.stringValue()); setValue(json, type.getTypeName(), value.name(), value.stringValue());
} }
@ -121,7 +121,7 @@ public class FlatJSONResponseWriter implements QueryResponseWriter, EmbeddedSolr
String sv = fields.get(i).stringValue(); String sv = fields.get(i).stringValue();
JSONObject j = new JSONObject(); JSONObject j = new JSONObject();
setValue(j, type.getTypeName(), "x", sv); //sf.write(this, null, f1); setValue(j, type.getTypeName(), "x", sv); //sf.write(this, null, f1);
a.put(j.get("x")); a.put(j.opt("x"));
} }
} }
fidx1 = fidx2; fidx1 = fidx2;

@ -611,6 +611,7 @@ public class RequestHeader extends HeaderFramework implements HttpServletRequest
} }
@Override @Override
@SuppressWarnings("deprecation")
public String getScheme() { public String getScheme() {
// here we can directly check original request first, as scheme is not expected to be changed // here we can directly check original request first, as scheme is not expected to be changed
if (_request != null) { if (_request != null) {

@ -2196,7 +2196,8 @@ public final class Switchboard extends serverSwitch {
if ((json.opt("index") != null && json.length() == 1) || json.length() == 0) continue; if ((json.opt("index") != null && json.length() == 1) || json.length() == 0) continue;
SolrInputDocument surrogate = new SolrInputDocument(); SolrInputDocument surrogate = new SolrInputDocument();
for (String key: json.keySet()) { for (String key: json.keySet()) {
Object o = json.get(key); Object o = json.opt(key);
if (o == null) continue;
if (o instanceof JSONArray) { if (o instanceof JSONArray) {
// transform this into a list // transform this into a list
JSONArray a = (JSONArray) o; JSONArray a = (JSONArray) o;
@ -3915,10 +3916,6 @@ public final class Switchboard extends serverSwitch {
} }
} }
public void initBookmarks(@SuppressWarnings("unused") boolean b) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
public class receiptSending implements Runnable public class receiptSending implements Runnable
{ {
private final Seed initiatorPeer; private final Seed initiatorPeer;

@ -67,6 +67,7 @@ public class YaCyDefaultServletTest {
* custom "CONNECTION_PROP_PROTOCOL" header indicates the protocol * custom "CONNECTION_PROP_PROTOCOL" header indicates the protocol
*/ */
@Test @Test
@SuppressWarnings("deprecation")
public void testGetContextCustomProtocolHeader() { public void testGetContextCustomProtocolHeader() {
RequestHeader header = new RequestHeader(); RequestHeader header = new RequestHeader();
header.put(HeaderFramework.HOST, "myhost.com:8443"); header.put(HeaderFramework.HOST, "myhost.com:8443");
@ -84,6 +85,7 @@ public class YaCyDefaultServletTest {
* custom "CONNECTION_PROP_PROTOCOL" indicates the protocol * custom "CONNECTION_PROP_PROTOCOL" indicates the protocol
*/ */
@Test @Test
@SuppressWarnings("deprecation")
public void testGetContextDefaultPortCustomProtocolHeader() { public void testGetContextDefaultPortCustomProtocolHeader() {
RequestHeader header = new RequestHeader(); RequestHeader header = new RequestHeader();
header.put(HeaderFramework.HOST, "myhost.com"); header.put(HeaderFramework.HOST, "myhost.com");
@ -99,7 +101,8 @@ public class YaCyDefaultServletTest {
/** /**
* getContext() : reverse proxy serving HTTPS, YaCy serving HTTP * getContext() : reverse proxy serving HTTPS, YaCy serving HTTP
*/ */
@Test @Test
@SuppressWarnings("deprecation")
public void testGetContextReverseProxy() { public void testGetContextReverseProxy() {
/* Different protocols : HTTPS on proxy, HTTP on peer */ /* Different protocols : HTTPS on proxy, HTTP on peer */
RequestHeader header = new RequestHeader(); RequestHeader header = new RequestHeader();

Loading…
Cancel
Save