From 2dfa025b1d2425b4f077378f42d4285c6567a40a Mon Sep 17 00:00:00 2001 From: Schankula Christopher <schankuc@mcmaster.ca> Date: Sat, 24 Mar 2018 17:33:03 -0400 Subject: [PATCH] delete TrawlExpert2.java --- src/model/TrawlExpert2.java | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 src/model/TrawlExpert2.java diff --git a/src/model/TrawlExpert2.java b/src/model/TrawlExpert2.java deleted file mode 100755 index ab61e04..0000000 --- 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 -- GitLab