diff --git a/src/biotree/WormsAPI.java b/src/biotree/WormsAPI.java
index 2ae560cd0c2fe87c6c48130cd3ebc0d438ad4151..63f5e26274ed4d829ffe1c06b8cbe1a55983281f 100644
--- a/src/biotree/WormsAPI.java
+++ b/src/biotree/WormsAPI.java
@@ -73,7 +73,7 @@ public class WormsAPI {
 	 * @throws IOException 
 	 * @throws ParseException 
 	 */
-<<<<<<< HEAD
+
 	public static TaxonNode[] idToClassification(int taxonId) throws IOException, ParseException {
 		String resp = makeRequest(String.format("http://marinespecies.org/rest/AphiaClassificationByAphiaID/%d", taxonId));
 		JSONParser parser = new JSONParser();
@@ -85,9 +85,6 @@ public class WormsAPI {
 		TaxonNode[] copiedArray = new TaxonNode[arraysize];
 
 		System.arraycopy(taxnodes, 0, copiedArray, 0, arraysize);
-=======
-	public static TaxonNode[] idToClassification(int taxonId) {
->>>>>>> 7713da5ef410b951f64f9d9fda4937386132f0a0
 		
 		return copiedArray;