#541 fix checkstyle errors
This commit is contained in:
parent
0687a3f9f8
commit
08c4202852
@ -23,7 +23,9 @@
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
||||||
|
http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package units;
|
package units;
|
||||||
|
|
||||||
import abstractextensions.CommanderExtension;
|
|
||||||
import abstractextensions.UnitExtension;
|
import abstractextensions.UnitExtension;
|
||||||
import concreteextensions.Commander;
|
import concreteextensions.Commander;
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package units;
|
package units;
|
||||||
|
|
||||||
import abstractextensions.SergeantExtension;
|
|
||||||
import abstractextensions.UnitExtension;
|
import abstractextensions.UnitExtension;
|
||||||
import concreteextensions.Sergeant;
|
import concreteextensions.Sergeant;
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package units;
|
package units;
|
||||||
|
|
||||||
import abstractextensions.SoldierExtension;
|
|
||||||
import abstractextensions.UnitExtension;
|
import abstractextensions.UnitExtension;
|
||||||
import concreteextensions.Soldier;
|
import concreteextensions.Soldier;
|
||||||
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
*/
|
*/
|
||||||
|
@ -3,8 +3,6 @@ package concreteextensions;
|
|||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import units.CommanderUnit;
|
import units.CommanderUnit;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
*/
|
*/
|
||||||
|
@ -3,8 +3,6 @@ package concreteextensions;
|
|||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import units.SergeantUnit;
|
import units.SergeantUnit;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
*/
|
*/
|
||||||
|
@ -3,8 +3,6 @@ package concreteextensions;
|
|||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import units.SoldierUnit;
|
import units.SoldierUnit;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
*/
|
*/
|
||||||
|
@ -3,7 +3,8 @@ package units;
|
|||||||
import abstractextensions.CommanderExtension;
|
import abstractextensions.CommanderExtension;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
|
@ -3,7 +3,8 @@ package units;
|
|||||||
import abstractextensions.SergeantExtension;
|
import abstractextensions.SergeantExtension;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
|
@ -3,7 +3,8 @@ package units;
|
|||||||
import abstractextensions.SoldierExtension;
|
import abstractextensions.SoldierExtension;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
package units;
|
package units;
|
||||||
|
|
||||||
import org.junit.After;
|
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Srdjan on 03-May-17.
|
* Created by Srdjan on 03-May-17.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user