Permalink
Browse files

Remove unused methods from CreateMapping

  • Loading branch information...
1 parent 49acd84 commit a4dcf6ef327cd1fe23b66de5cd3dc77fb5b4462e @palexander palexander committed Jul 31, 2014
Showing with 0 additions and 36 deletions.
  1. +0 −36 java/src/CreateMapping.java
@@ -54,42 +54,6 @@ public static void main(String[] args) throws Exception {
System.out.println("Added mapping successfully");
}
- private static JsonNode jsonToNode(String json) {
- JsonNode root = null;
- try {
- root = mapper.readTree(json);
- } catch (JsonProcessingException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
- return root;
- }
-
- private static String get(String urlToGet) {
- URL url;
- HttpURLConnection conn;
- BufferedReader rd;
- String line;
- String result = "";
- try {
- url = new URL(urlToGet);
- conn = (HttpURLConnection) url.openConnection();
- conn.setRequestMethod("GET");
- conn.setRequestProperty("Authorization", "apikey token=" + API_KEY);
- conn.setRequestProperty("Accept", "application/json");
- rd = new BufferedReader(
- new InputStreamReader(conn.getInputStream()));
- while ((line = rd.readLine()) != null) {
- result += line;
- }
- rd.close();
- } catch (Exception e) {
- e.printStackTrace();
- }
- return result;
- }
-
private static String postJSON(String urlToGet, String body) {
URL url;
HttpURLConnection conn;

0 comments on commit a4dcf6e

Please sign in to comment.