diff --git a/src/model/TrawlExpert2.java b/src/model/TrawlExpert2.java deleted file mode 100755 index ab61e04b0ac93590eb01670df06d255726439717..0000000000000000000000000000000000000000 --- a/src/model/TrawlExpert2.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.example.model; -import java.util.*; -public class TrawlExpert { - -public List getBrands(String phylum) { - List brands = new ArrayList(); - if (phylum.equals("Arthropoda")) { - brands.add("Some arthropoda data"); - brands.add("Some more Arthropoda data"); - } - else { - brands.add("This aint arthropoda"); - brands.add("Under construction"); - } - return brands; - } -} - -// For Testing on Java's Console -// public static void main(String[]args){ -// String color = "amber"; -// System.out.println(brand.get(0)); -// } \ No newline at end of file