diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-04-27 20:32:01 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-04-27 20:32:01 +0200 |
commit | f9c00672695c1bd1d148d7eaf4a50e820faf7f3f (patch) | |
tree | a85d098c1b7039a7c53e4e52dfe8a1744e1cb23e /src/com.example.portfolio3/com/example/portfolio3/Graph.java | |
parent | 5fdfc0c9b1f1ed084cb084aed19be56a03698730 (diff) |
fix imports and avoid wildcard import
Diffstat (limited to 'src/com.example.portfolio3/com/example/portfolio3/Graph.java')
-rw-r--r-- | src/com.example.portfolio3/com/example/portfolio3/Graph.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com.example.portfolio3/com/example/portfolio3/Graph.java b/src/com.example.portfolio3/com/example/portfolio3/Graph.java index 6e58029..a8fbde0 100644 --- a/src/com.example.portfolio3/com/example/portfolio3/Graph.java +++ b/src/com.example.portfolio3/com/example/portfolio3/Graph.java @@ -2,7 +2,7 @@ package com.example.portfolio3; // origin: <https://moodle.ruc.dk/course/section.php?id=211877> -import java.util.*; +import java.util.Collection; /// foo public interface Graph { |