Made web-service client non-final to enable its mocks.

This commit is contained in:
Inderjeet Singh 2010-07-12 23:10:58 +00:00
parent de74482fe8
commit 16c2832588
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ import com.google.gson.webservice.typeadapters.ResponseBodyGsonConverter;
*
* @author inder
*/
public final class WebServiceClient {
public class WebServiceClient {
private final WebServiceConfig config;
private final Logger logger;
private final Level logLevel;

View File

@ -30,7 +30,7 @@ import com.google.gson.webservice.definition.WebServiceSystemException;
*
* @author inder
*/
public final class WebServiceClientAsync {
public class WebServiceClientAsync {
private final BlockingQueue<QueueEntry> queue;
private final boolean threadPerTask;