Skip to content

Commit

Permalink
Main
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaTh committed Nov 28, 2015
1 parent da09d71 commit f73ddc9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entities/Equipment/Terminal.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public void setEd(IPAddressV4 ed) {
this.ed = ed;
}


@Override
public void receivePacket(Packet packet) {
if(packet.getDestination().equals(associatedIp)){
Expand Down Expand Up @@ -64,6 +63,7 @@ public void sendPacket(Packet packet) {
}
}
}

public void sendPacket(IPAddressV4 destination, PacketType packetType) {
boolean exists = false;
Packet packet;
Expand Down
10 changes: 10 additions & 0 deletions src/Main/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package Main;

public class Main {

public static void main(String[] args) {
// TODO Auto-generated method stub

}

}

0 comments on commit f73ddc9

Please sign in to comment.