Skip to content

Commit aaaa416

Browse files
author
Joshua Caron
committed
Removed old files.
1 parent 54a9a17 commit aaaa416

11 files changed

+24
-472
lines changed

project2/client/.DS_Store

0 Bytes
Binary file not shown.

project2/client/NodeExample.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11

22
public class NodeExample implements Node {
3-
Object data;
3+
String name;
44

55

6-
NodeExample(Object data) {
7-
this.data = data;
6+
NodeExample(String name) {
7+
this.name = name;
88
}
99

10-
public void setData(Object o) {
11-
this.data = o;
10+
public void setName(String o) {
11+
this.name = o;
1212
}
1313

14-
public Object getData() {
15-
return this.data;
14+
public String getName() {
15+
return this.name;
1616
}
1717

1818
}

project3/src/CEdge.java

-29
This file was deleted.

project3/src/CGraph.java

-283
This file was deleted.

project3/src/CGraphFactory.java

-10
This file was deleted.

0 commit comments

Comments
 (0)