diff --git a/src/org/ntlab/pushPullRefactoring/PushPullProcessor.java b/src/org/ntlab/pushPullRefactoring/PushPullProcessor.java index 4519652..14a2c76 100644 --- a/src/org/ntlab/pushPullRefactoring/PushPullProcessor.java +++ b/src/org/ntlab/pushPullRefactoring/PushPullProcessor.java @@ -621,7 +621,7 @@ + System.getProperty("line.separator"); if (invocations.size() == 0) code += "String "; - code += "result = client.target(\"http://localhost:8080\").path(this." + dstValue + code += "result = client.target(\"http://localhost:8080\").path(" + dstValue + ").request().put(entity, String.class);" + System.getProperty("line.separator"); addStatementLast(srcUnitRewrite, srcUnit, update.getBody(), code, Block.STATEMENTS_PROPERTY); }