1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Fixed javac compiler error.

This commit is contained in:
Pawel Piech 2007-04-05 16:15:50 +00:00
parent 7d59d57f72
commit c923b48ecc

View file

@ -30,7 +30,7 @@ public interface ICommand<V extends ICommandResult> {
*
* @return newly created command, or null if command cannot be coalesced
*/
public ICommand<? extends ICommandResult> coalesceWith( ICommand<?> command );
public ICommand<? extends ICommandResult> coalesceWith( ICommand<? extends ICommandResult> command );
}