Incremental Builds

This commit is contained in:
James Munson
2019-07-05 15:19:04 -07:00
parent 9d8c96f612
commit 1ec45e09d4
4 changed files with 7 additions and 6 deletions

View File

@@ -84,7 +84,7 @@ public class ExamineClient
public void onResponse(Call call, Response response)
{
response.close();
logger.debug("Submitted examine info for {} {}: {}", type, id, text);
//logger.debug("Submitted examine info for {} {}: {}", type, id, text);
}
});
}

View File

@@ -28,7 +28,6 @@ import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import net.runelite.http.api.ws.messages.Handshake;
import net.runelite.http.api.ws.messages.LoginResponse;
@@ -79,8 +78,9 @@ public class WebsocketGsonFactory
.create();
}
public static Gson build()
public static boolean build()
{
return build(factory(Collections.emptyList()));
//return build(factory(Collections.emptyList()));
return true;
}
}

View File

@@ -62,7 +62,7 @@ public class XpClient
public void onResponse(Call call, Response response)
{
response.close();
logger.debug("Submitted xp track for {}", username);
//logger.debug("Submitted xp track for {}", username);
}
});
}

View File

@@ -349,7 +349,8 @@
</goals>
<phase>compile</phase>
<configuration>
<source>8</source>
<source>${java.version}</source>
<target>${java.version}</target>
<proc>proc</proc>
<!-- or "javac" to use javac java compiler -->
<compilerId>jdt</compilerId>