This commit is contained in:
Delta1805 2017-09-20 18:59:47 +02:00
commit b82738b505
1 changed files with 3 additions and 3 deletions

View File

@ -9,16 +9,16 @@ public class Team {
Torwart torwart;
int siege;
<<<<<<< HEAD
public Team(){
=======
public boolean isInTeam(Person p){
for(Person pp:spieler){
if(p.equals(pp)) return true;
}
if(torwart.equals(p)) return true;
return false;
>>>>>>> d6acf05b72f53607f222d077c1491dd1bb71add5
}
}