We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba70bd8 commit 5323192Copy full SHA for 5323192
1 file changed
library/src/main/java/com/proxerme/library/event/success/ConferencesEvent.java
@@ -12,7 +12,7 @@
12
*
13
* @author Ruben Gees
14
*/
15
-public class ConferencesEvent implements IEvent {
+public class ConferencesEvent implements IEvent<List<Conference>> {
16
17
private List<Conference> conferences;
18
@@ -22,7 +22,7 @@ public ConferencesEvent(@NonNull List<Conference> conferences) {
22
23
@NonNull
24
@Override
25
- public Object getItem() {
+ public List<Conference> getItem() {
26
return conferences;
27
}
28
0 commit comments