Skip to content

Commit

Permalink
Follow style rules prohibiting lines > 120 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
ghubstan committed Aug 21, 2020
1 parent 194250d commit ee8f70d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apitest/src/main/java/bisq/apitest/config/ApiTestConfig.java
Expand Up @@ -127,8 +127,10 @@ public ApiTestConfig(String... args) {
this.rootProjectDir = isRunningTest
? Paths.get(userDir).getParent().toFile().getAbsolutePath()
: Paths.get(userDir).toFile().getAbsolutePath();
this.baseBuildResourcesDir = Paths.get(rootProjectDir, "apitest", "build", "resources", "main").toFile().getAbsolutePath();
this.baseSrcResourcesDir = Paths.get(rootProjectDir, "apitest", "src", "main", "resources").toFile().getAbsolutePath();
this.baseBuildResourcesDir = Paths.get(rootProjectDir, "apitest", "build", "resources", "main")
.toFile().getAbsolutePath();
this.baseSrcResourcesDir = Paths.get(rootProjectDir, "apitest", "src", "main", "resources")
.toFile().getAbsolutePath();

this.defaultConfigFile = absoluteConfigFile(baseBuildResourcesDir, DEFAULT_CONFIG_FILE_NAME);
this.bitcoinDatadir = Paths.get(baseBuildResourcesDir, "Bitcoin-regtest").toFile().getAbsolutePath();
Expand Down

1 comment on commit ee8f70d

@ghubstan
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change has been added to PR 4366, with commit 1de6239. Do not re-add it to any new PR.

Please sign in to comment.