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