Skip to content

Commit

Permalink
CityView.cs analysed and corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Hybeee committed May 7, 2024
1 parent 0d896dd commit ad901bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/static_analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Ezen osztály esetében csak egy hiba jött fel, ez pedig a `@Override` annotác
### ./Game/Stepable.java
Nem volt probléma ezen osztály esetén - leszámítva a naming convention-öket.
### ./Graphics/CityView.java
Nem volt probléma ezen osztály esetén - leszámítva a naming convention-öket.
### ./Graphics/Drawer.java
### ./Graphics/GameFrame.java
### ./Graphics/IView.java
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/hu/bomboclat/Game/Playfield.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public class Playfield implements Stepable{
* Playfield konstruktor
*/
public Playfield(){
nodes = new ArrayList<Node>();
pipes = new ArrayList<Pipe>();
nodes = new ArrayList<>();
pipes = new ArrayList<>();
}
// random comment

Expand Down

0 comments on commit ad901bd

Please sign in to comment.