Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2XB3FinalProject
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Schankula
2XB3FinalProject
Commits
2dfa025b
Commit
2dfa025b
authored
7 years ago
by
Christopher Schankula
Browse files
Options
Downloads
Patches
Plain Diff
delete TrawlExpert2.java
parent
9bd1664b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/model/TrawlExpert2.java
+0
-23
0 additions, 23 deletions
src/model/TrawlExpert2.java
with
0 additions
and
23 deletions
src/model/TrawlExpert2.java
deleted
100755 → 0
+
0
−
23
View file @
9bd1664b
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment