File clean-up

This commit is contained in:
KylerSmith
2017-07-09 16:29:00 -07:00
parent 5fec65b247
commit ae7aba0b44
21 changed files with 14 additions and 14 deletions

View File

@@ -0,0 +1,32 @@
/**
* This class implements the Graph data structure
* using the classes Graph and Graphs.
*
* @author Zachary Jones
*
*/
class Graph {
}
/**
* This class is used to test the Graph
* class above.
*
* @author Zachary Jones
*
*/
public class Graphs {
/**
* Main method
*
* @param args Command line arguments
*/
public static void main(String args[]) {
}
}