Remove commented methods/fields in APPC
[appc.git] / appc-adapters / appc-chef-adapter / appc-chef-adapter-bundle / src / main / java / org / openecomp / appc / adapter / chef / chefclient / ChefApiClient.java
index f3cc44b..743fe84 100644 (file)
@@ -67,25 +67,4 @@ public class ChefApiClient {
                put.setChefPath(path);
                return put;
    }
-/*     public Post post(String path){
-               Post post = new Post(new PostMethod(endpoint+path));
-               post.setPemPath(pemPath);
-               post.setUserId(userId);
-               return post;
-       }
-
-       public Delete delete(String path){
-           Delete del = new Delete(new DeleteMethod(endpoint+path));
-           del.setPemPath(pemPath);
-           del.setUserId(userId);
-           return del;
-       }
-
-
-*/
-/*     public Header[] buildHeaders(){
-
-           return null;
-       }
-*/
 }