Skip to content

Commit

Permalink
#6 "nincs ilyen függvénye: " string moved into a literal
Browse files Browse the repository at this point in the history
  • Loading branch information
pupcs committed May 21, 2024
1 parent fc2923e commit 3cf1b03
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions src/main/java/program/main/Pipe.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ public class Pipe extends Field {
int x2;
int y2;

String nif = "Nincs ilyen függvénye: ";

/**
* Megadja, hogy a csőben van-e víz.
*/
Expand Down Expand Up @@ -233,7 +235,7 @@ public Pump otherEnd(Pump p) {
*/
@Override
public void setNewPump(Pump p) {
throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.setNewPump()");
throw new UnsupportedOperationException(nif + "Pipe.setNewPump()");
}

/**
Expand All @@ -243,7 +245,7 @@ public void setNewPump(Pump p) {
*/
@Override
public boolean getNewPump() {
throw new UnsupportedOperationException("Nincs ilyen függvénye" + "Pipe.getNewPump()");
throw new UnsupportedOperationException(nif + "Pipe.getNewPump()");
}

/**
Expand Down Expand Up @@ -290,7 +292,7 @@ public void turn() {
@Override
public ArrayList<Pump> listNeighbours() {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.listNeighbours()");
throw new UnsupportedOperationException(nif + "Pipe.listNeighbours()");

}

Expand All @@ -302,7 +304,7 @@ public ArrayList<Pump> listNeighbours() {
@Override
public void removePipe(Pipe p) {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.removePipe()");
throw new UnsupportedOperationException(nif + "Pipe.removePipe()");
}

/**
Expand All @@ -312,7 +314,7 @@ public void removePipe(Pipe p) {
*/
@Override
public void connectPipe(Pipe p) {
throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.connectPipe()");
throw new UnsupportedOperationException(nif + "Pipe.connectPipe()");

}

Expand All @@ -324,7 +326,7 @@ public void connectPipe(Pipe p) {
@Override
public void changePipeIn(Pipe p) {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.changePipeIn()");
throw new UnsupportedOperationException(nif + "Pipe.changePipeIn()");

}

Expand All @@ -335,7 +337,7 @@ public void changePipeIn(Pipe p) {
*/
@Override
public void changePipeOut(Pipe p) {
throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.changePipeOut()");
throw new UnsupportedOperationException(nif + "Pipe.changePipeOut()");

}

Expand All @@ -347,7 +349,7 @@ public void changePipeOut(Pipe p) {
@Override
public void setNewPipe(Pipe p) {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.setNewPipe()");
throw new UnsupportedOperationException(nif + "Pipe.setNewPipe()");
}

/**
Expand All @@ -358,7 +360,7 @@ public void setNewPipe(Pipe p) {
@Override
public Pipe getNewPipe() {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getNewPipe()");
throw new UnsupportedOperationException(nif + "Pipe.getNewPipe()");

}

Expand All @@ -368,7 +370,7 @@ public Pipe getNewPipe() {
@Override
public int SpareWater() {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.SpareWater()");
throw new UnsupportedOperationException(nif + "Pipe.SpareWater()");

}

Expand All @@ -392,7 +394,7 @@ public ArrayList<Pump> getConnectedPumps() {
*/
public ArrayList<Pipe> getConnectedPipes() {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getConnectedPipes()");
throw new UnsupportedOperationException(nif + "Pipe.getConnectedPipes()");
}

/**
Expand Down Expand Up @@ -516,23 +518,23 @@ public void setWater(boolean state) {

public void removeNeighour(Pump p) {

throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.removeNeighour()");
throw new UnsupportedOperationException(nif + "Pipe.removeNeighour()");
}

public void addNeighour(Pump p) {
throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.addNeighour()");
throw new UnsupportedOperationException(nif + "Pipe.addNeighour()");
}

public void addWater() {
throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.addWater()");
throw new UnsupportedOperationException(nif + "Pipe.addWater()");
}

public Pipe getPipeIn() {
throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getPipeIn()");
throw new UnsupportedOperationException(nif + "Pipe.getPipeIn()");
}

public Pipe getPipeOut() {
throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getPipeOut()");
throw new UnsupportedOperationException(nif + "Pipe.getPipeOut()");
}

/**
Expand Down
Binary file modified target/classes/program/main/Pipe.class
Binary file not shown.

0 comments on commit 3cf1b03

Please sign in to comment.