From 853a6b5684df06d01a1ce49d98b1f172c744aa23 Mon Sep 17 00:00:00 2001 From: Hai Brenner Date: Mon, 4 Jul 2016 16:05:52 +0300 Subject: [PATCH] Another (final) Generics type fix --- .../meerkat/voting/output/outputcommands/OutputCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voting-booth/src/main/java/meerkat/voting/output/outputcommands/OutputCommand.java b/voting-booth/src/main/java/meerkat/voting/output/outputcommands/OutputCommand.java index 59f5ebc..89591fb 100644 --- a/voting-booth/src/main/java/meerkat/voting/output/outputcommands/OutputCommand.java +++ b/voting-booth/src/main/java/meerkat/voting/output/outputcommands/OutputCommand.java @@ -6,13 +6,13 @@ import meerkat.voting.controller.callbacks.ControllerCallback; * Base class for the commands to put in the output-device queue */ public abstract class OutputCommand { - protected final ControllerCallback callback; + protected final ControllerCallback callback; protected OutputCommand(ControllerCallback callback) { this.callback = callback; } public ControllerCallback getCallback () { - return this.callback; + return callback; } }