Resolves checkstyle errors for execute-around extension-objects (#1071)

* Reduces checkstyle errors in execute-around

* Reduces checkstyle errors in extension-objects
This commit is contained in:
Anurag Agarwal
2019-11-10 23:08:51 +05:30
committed by Ilkka Seppälä
parent 5ae2ce6e2e
commit 4dae1fae57
15 changed files with 27 additions and 29 deletions

View File

@ -24,7 +24,7 @@
package abstractextensions;
/**
* Interface with their method
* Interface with their method.
*/
public interface CommanderExtension extends UnitExtension {

View File

@ -24,7 +24,7 @@
package abstractextensions;
/**
* Interface with their method
* Interface with their method.
*/
public interface SergeantExtension extends UnitExtension {

View File

@ -24,7 +24,7 @@
package abstractextensions;
/**
* Interface with their method
* Interface with their method.
*/
public interface SoldierExtension extends UnitExtension {
void soldierReady();

View File

@ -24,7 +24,7 @@
package abstractextensions;
/**
* Other Extensions will extend this interface
* Other Extensions will extend this interface.
*/
public interface UnitExtension {
}