Skip to content

Commit

Permalink
Merge pull request #50 from BME-MIT-IET/Tamassch-sonar
Browse files Browse the repository at this point in the history
Sonar jelzések vizsgálata, @OverRide hiányának javítása, felesleges TODO commentek törlése
  • Loading branch information
rpaohfdebcuohwbk authored May 19, 2024
2 parents d0e30e1 + 812e5ce commit 5accd69
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions src/main/java/virologist/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

import virologist.control.Controller;
import virologist.control.Loader;
//TODO comment
//TODO 2 virologist.Main osztaly is van, sztem lehetne a controlban, de itt is jo akar

public class Main {

/**
Expand Down
1 change: 0 additions & 1 deletion src/main/java/virologist/control/Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import virologist.model.Subject;
import virologist.model.map.Field;
import virologist.view.Window;
//TODO comment
/**
* Prototípus külvilággal való kommunikációjáért felelős osztály.
* Megvalósítja a dokumentációban leírt bemeneti nyelv funkcióit, valamint közvetít a modell és a felhasználó(k) között.
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/virologist/model/agents/Block.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public Block(int tL) {
* Törli az összes jelenleg hatással bíró ágenst és hatásait a virológusból.
* @param v a célzott virológus
*/
@Override
public void Apply(Virologist v) {
v.RemoveAgents();
}
Expand All @@ -29,6 +30,7 @@ public void Apply(Virologist v) {
* Beállítja a virológuson, hogy blokkolja majd az eljövendő felkenéseket
* @param v a célzott virológus
*/
@Override
public void ApplyStrategy(Virologist v) {
NoInjected ni = new NoInjected();
v.SetInjectedStr(ni);
Expand Down
1 change: 1 addition & 0 deletions src/main/java/virologist/model/agents/Chorea.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public Chorea(int tL) {
* Háromszor lépteti a virológust random irányban, ha az képes a lépésekre.
* @param v a célzott virológus
*/
@Override
public void Apply(Virologist v) {
v.Move();
v.Move();
Expand Down
1 change: 1 addition & 0 deletions src/main/java/virologist/model/agents/Forget.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public Forget(int tL) {
* aki elfelejti az összes megtanult GeneticCode-ját.
* @param v a célzott virológus
*/
@Override
public void Apply(Virologist v) {
v.RemoveGeneticCodes();
}
Expand Down
1 change: 1 addition & 0 deletions src/main/java/virologist/model/agents/Stun.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public Stun(int ttl) {
* Azt, hogy semmit se tudjon tenni, őt se lehessen megkenni, de ki tudják fosztani más játékosok.
* @param v a célzott virológus
*/
@Override
public void ApplyStrategy(Virologist v) {
Looted lt = new Looted();
NoCollect nc = new NoCollect();
Expand Down
4 changes: 1 addition & 3 deletions src/main/java/virologist/model/strategy/BearMove.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
import java.util.ArrayList;
import java.util.concurrent.ThreadLocalRandom;

/**
* TODO comment
*/

public class BearMove implements IMoveStr {
Field randomNeighbour;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/virologist/model/strategy/DefInjected.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void Injected(Virologist v, Agent a) {
}

/**
* //TODO
*
* @param by
* @param injected
* @param a
Expand Down

0 comments on commit 5accd69

Please sign in to comment.