Skip to content
Snippets Groups Projects
Commit 2dfa025b authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

delete TrawlExpert2.java

parent 9bd1664b
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment