mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-17 23:04:07 +01:00
Remove superflous semicolon
This commit is contained in:
@@ -204,7 +204,7 @@ public class DependencyVersionTest {
|
|||||||
DependencyVersion instance = new DependencyVersion();
|
DependencyVersion instance = new DependencyVersion();
|
||||||
List<String> versionParts = Arrays.asList("1", "1", "1");
|
List<String> versionParts = Arrays.asList("1", "1", "1");
|
||||||
instance.setVersionParts(versionParts);
|
instance.setVersionParts(versionParts);
|
||||||
List<String> expResult = Arrays.asList("1", "1", "1");;
|
List<String> expResult = Arrays.asList("1", "1", "1");
|
||||||
List<String> result = instance.getVersionParts();
|
List<String> result = instance.getVersionParts();
|
||||||
assertEquals(expResult, result);
|
assertEquals(expResult, result);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user