Add missing constructor parameter

This commit is contained in:
Mark Vainomaa 2018-10-25 12:42:01 +03:00
parent 793477b898
commit fdc83261cb
No known key found for this signature in database
GPG Key ID: 1B3F9523B542D315

View File

@ -604,7 +604,7 @@ public class VelocityConfiguration extends AnnotatedConfig implements ProxyConfi
private Query() {}
private Query(boolean queryEnabled, int queryPort) {
private Query(boolean queryEnabled, int queryPort, String queryMap) {
this.queryEnabled = queryEnabled;
this.queryPort = queryPort;
this.queryMap = queryMap;