Skip to content

Commit

Permalink
Merge pull request #15 from BME-MIT-IET/manual_code_review
Browse files Browse the repository at this point in the history
ManualCodeReview
  • Loading branch information
mrbncdnl authored May 22, 2024
2 parents 3674565 + 2f280fa commit f178fc0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions manual_code_review/CodeReview.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,16 @@ Másik lehetőség volt egy kivátelt dobni:
```
### A metódusok ellátása @Override annotációval
Az adott hiba az adott fájlban 3 helyen is
![img_8.png](img_8.png)
Az alábbi kódrészlettel lett a probléma megoldva:
```java
@Override
public void KorVege(Jatek j){...}
```
Binary file added manual_code_review/img_8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/main/java/Ciszterna.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public Ciszterna(int max, String id){
*
* @param j - Az a játék, amit éppen játszanak
*/
@Override
public void KorVege(Jatek j){

for(Mezo szomszed: szomszedok){
Expand All @@ -36,13 +37,15 @@ public void KorVege(Jatek j){
*
* @param sz - A szerelő, aki a ciszternán áll
*/
@Override
public void PumpatAd(Szerelo sz){
sz.setVanPumpa(true);
}

/**
* Új csövet hoz létre a ciszternánál
*/
@Override
public void CiszteraBovul(Jatek j){
Cso cs = new Cso("cs"+cso);
SzomszedFelvesz(cs);
Expand Down

0 comments on commit f178fc0

Please sign in to comment.