Skip to content
Snippets Groups Projects
Commit 2ecb8709 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

Truck class was edited to omit the statement: package mv3500; then...

Truck class was edited to omit the statement: package mv3500; then Refactor/Rename updated to BlankenbekerTruck
parent fca7b55d
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ public class BlankenbekerMulticastSender { ...@@ -24,7 +24,7 @@ public class BlankenbekerMulticastSender {
public static void main(String[] args) public static void main(String[] args)
{ {
Truck truck = new Truck(); BlankenbekerTruck truck = new BlankenbekerTruck();
while (true) { while (true) {
truck.move(); truck.move();
try try
......
...@@ -3,18 +3,18 @@ ...@@ -3,18 +3,18 @@
* To change this template file, choose Tools | Templates * To change this template file, choose Tools | Templates
* and open the template in the editor. * and open the template in the editor.
*/ */
package mv3500code; //package mv3500code;
/** /**
* *
* @author Michael * @author Michael
*/ */
public class Truck { public class BlankenbekerTruck {
private float x; private float x;
private float y; private float y;
private float z; private float z;
public Truck(){ public BlankenbekerTruck(){
x = 0; x = 0;
y=0; y=0;
z=0; z=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment