Update Pruefungsverwaltung.java
Use diamond notation <> Use interface instead of class for instance variable
This commit is contained in:
parent
741a85bc47
commit
c8d773a0ac
|
@ -10,8 +10,8 @@ import java.util.HashMap;
|
|||
*
|
||||
*/
|
||||
public class Pruefungsverwaltung {
|
||||
private ArrayList<Pruefungsergebnis> ergebnisse = new ArrayList<Pruefungsergebnis>();
|
||||
private HashMap<Double, String> noteVonZahlZuText = new HashMap<Double, String>();
|
||||
private List<Pruefungsergebnis> ergebnisse = new ArrayList<>();
|
||||
private Map<Double, String> noteVonZahlZuText = new HashMap<>();
|
||||
|
||||
public Pruefungsverwaltung() {
|
||||
init();
|
||||
|
|
Loading…
Reference in New Issue