From f9c00672695c1bd1d148d7eaf4a50e820faf7f3f Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Sun, 27 Apr 2025 20:32:01 +0200 Subject: fix imports and avoid wildcard import --- src/com.example.portfolio3/com/example/portfolio3/EdgeGraph.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/com.example.portfolio3/com/example/portfolio3/EdgeGraph.java') diff --git a/src/com.example.portfolio3/com/example/portfolio3/EdgeGraph.java b/src/com.example.portfolio3/com/example/portfolio3/EdgeGraph.java index ae9cbe9..22cfe87 100644 --- a/src/com.example.portfolio3/com/example/portfolio3/EdgeGraph.java +++ b/src/com.example.portfolio3/com/example/portfolio3/EdgeGraph.java @@ -2,6 +2,11 @@ package com.example.portfolio3; // origin: +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashSet; +import java.util.Set; + /// EdgeGraph - One big set of all edges in the graph class EdgeGraph extends AbstractGraph { -- cgit v1.2.3