Skip to content

Commit

Permalink
Cleanup logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobisaninfo committed Jun 27, 2020
1 parent 8eae936 commit 1e95fb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/de/deadlocker8/budgetmaster/ProgramArgs.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

public class ProgramArgs
{
private final static Logger LOGGER = LoggerFactory.getLogger(ProgramArgs.class);
private static final Logger LOGGER = LoggerFactory.getLogger(ProgramArgs.class);

private static List<String> args = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@Service
public class BudgetMasterUpdateService
{
private final static Logger LOGGER = LoggerFactory.getLogger(BudgetMasterUpdateService.class);
private static final Logger LOGGER = LoggerFactory.getLogger(BudgetMasterUpdateService.class);

@Autowired
private Artifact artifact;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static String getTextNode(WebElement e)
return text;
}

private final static String BASE_URL = "http://localhost:";
private static final String BASE_URL = "http://localhost:";
private WebDriver driver;
private String url;

Expand Down

0 comments on commit 1e95fb8

Please sign in to comment.