~janos-gyerik/dilemmagame/trunk

« back to all changes in this revision

Viewing changes to dilemmagame-common/src/main/java/com/dilemmagame/api/IServerMessageListener.java

  • Committer: Janos Gyerik
  • Date: 2011-05-20 06:55:21 UTC
  • Revision ID: janos@axiom-20110520065521-1307tm92a4dk9lcr
removed unnecessary ? extends signatures

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
         * 
41
41
         * @param playerActions
42
42
         */
43
 
        void onGameEnd(Map<IPlayer, ? extends IAction> playerActions);
 
43
        void onGameEnd(Map<IPlayer, IAction> playerActions);
44
44
}