aboutsummaryrefslogtreecommitdiff
path: root/com/example/portfolio3/AdjListGraph.java
diff options
context:
space:
mode:
Diffstat (limited to 'com/example/portfolio3/AdjListGraph.java')
-rw-r--r--com/example/portfolio3/AdjListGraph.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/com/example/portfolio3/AdjListGraph.java b/com/example/portfolio3/AdjListGraph.java
index 416f646..a677d3e 100644
--- a/com/example/portfolio3/AdjListGraph.java
+++ b/com/example/portfolio3/AdjListGraph.java
@@ -5,10 +5,10 @@ package com.example.portfolio3;
import java.util.*;
/// Adjecency List Graph - A map from vertices to set of outedges from the vertex
-class AdjListGraph extends AbstractGraph {
+public class AdjListGraph extends AbstractGraph {
/// foo
- AdjListGraph() {}
+ public AdjListGraph() {}
/// foo
private Map<Vertex,Set<Edge>> outEdge= new HashMap<>();