SteamWar/BauSystem2.0
Archiviert
12
0

Trace Refactor #233

Zusammengeführt
YoyoNow hat 121 Commits von TracerGUI nach master 2024-04-21 16:03:26 +02:00 zusammengeführt
Nur Änderungen aus Commit 3a3c4819f9 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -85,8 +85,11 @@ public class TraceManager implements Listener {
* @param id id of the trace * @param id id of the trace
* @return the trace with given id or null if no trace with id is found * @return the trace with given id or null if no trace with id is found
*/ */
public Trace get(int id){ public Optional<Trace> get(int id){
return traces.getOrDefault(id, null); Trace ret = traces.get(id);
if(traces.containsKey(id))
return Optional.of(traces.get(id));
return Optional.empty();
} }
/** Methode to get all traces /** Methode to get all traces