Skip to content

Commit

Permalink
devonfw#13: small change
Browse files Browse the repository at this point in the history
changed comment and removed @SuppressWarnings(javadoc)
  • Loading branch information
MattesMrzik committed Jan 8, 2024
1 parent 9f4e0ea commit 2138357
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
/**
* Test of {@link EnvironmentVariablesPropertiesFile}.
*/
@SuppressWarnings("javadoc")
class EnvironmentVariablesPropertiesFileTest extends Assertions {

/**
Expand Down Expand Up @@ -77,7 +76,7 @@ void testSave(@TempDir Path tempDir) throws Exception {
variables.set("var5", "5", true);
variables.set("var1", "1.0", false);
variables.set("var10", "10", false);
variables.set("var11", "11", true); // var11 must be set after var 10, the other lines can be shuffled
variables.set("var11", "11", true);
variables.set("var3", "3", false);
variables.set("var7", "7", true);
variables.set("var6", "6.0", true);
Expand Down

0 comments on commit 2138357

Please sign in to comment.