Incremental Builds
This commit is contained in:
@@ -84,7 +84,7 @@ public class ExamineClient
|
|||||||
public void onResponse(Call call, Response response)
|
public void onResponse(Call call, Response response)
|
||||||
{
|
{
|
||||||
response.close();
|
response.close();
|
||||||
logger.debug("Submitted examine info for {} {}: {}", type, id, text);
|
//logger.debug("Submitted examine info for {} {}: {}", type, id, text);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ import com.google.gson.Gson;
|
|||||||
import com.google.gson.GsonBuilder;
|
import com.google.gson.GsonBuilder;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import net.runelite.http.api.ws.messages.Handshake;
|
import net.runelite.http.api.ws.messages.Handshake;
|
||||||
import net.runelite.http.api.ws.messages.LoginResponse;
|
import net.runelite.http.api.ws.messages.LoginResponse;
|
||||||
@@ -79,8 +78,9 @@ public class WebsocketGsonFactory
|
|||||||
.create();
|
.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Gson build()
|
public static boolean build()
|
||||||
{
|
{
|
||||||
return build(factory(Collections.emptyList()));
|
//return build(factory(Collections.emptyList()));
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ public class XpClient
|
|||||||
public void onResponse(Call call, Response response)
|
public void onResponse(Call call, Response response)
|
||||||
{
|
{
|
||||||
response.close();
|
response.close();
|
||||||
logger.debug("Submitted xp track for {}", username);
|
//logger.debug("Submitted xp track for {}", username);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
3
pom.xml
3
pom.xml
@@ -349,7 +349,8 @@
|
|||||||
</goals>
|
</goals>
|
||||||
<phase>compile</phase>
|
<phase>compile</phase>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>8</source>
|
<source>${java.version}</source>
|
||||||
|
<target>${java.version}</target>
|
||||||
<proc>proc</proc>
|
<proc>proc</proc>
|
||||||
<!-- or "javac" to use javac java compiler -->
|
<!-- or "javac" to use javac java compiler -->
|
||||||
<compilerId>jdt</compilerId>
|
<compilerId>jdt</compilerId>
|
||||||
|
|||||||
Reference in New Issue
Block a user