Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaChen committed Jan 4, 2025
1 parent e86fa50 commit 337dc23
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public final class EnvironmentPropertyPlaceholderLoader implements ShardingSpherePlaceholderLoader {

@Override
public String getArgumentValue(String argName) {
public String getArgumentValue(final String argName) {
return System.getenv(argName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public final class SystemPropertyPlaceholderLoader implements ShardingSpherePlaceholderLoader {

@Override
public String getArgumentValue(String argName) {
public String getArgumentValue(final String argName) {
return System.getProperty(argName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

import static org.junit.jupiter.api.Assertions.assertEquals;


class URLArgumentPlaceholderTypeFactoryTest {

@Test
Expand Down

0 comments on commit 337dc23

Please sign in to comment.