Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
dcanar9 committed Nov 30, 2022
1 parent 69a2ca5 commit b88d6bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11
- name: Build with Maven
run: mvn test --file pom.xml

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: java
jdk:
- openjdk8
- openjdk11
services:
- docker

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public ResponseEntity<String> cleanup(String collectorTypeString, String collect
for (CollectorItem collectorItem : collectorItems) {
if (!hasComponent(collectorType, collectorItem.getId())) {

String loggingPrefix = String.format("cleanup :: Removing (#%d of %d):: could not find a dashboard for the collectorItem with the following options:"
String loggingPrefix = String.format("cleanup :: Removing (#%d of %d) :: could not find a dashboard for the collectorItem with the following options:"
,collectorItems.indexOf(collectorItem)+1, collectorItems.size());

logDeletedCollectorItem(collectorType, collectorItem, loggingPrefix);
Expand Down

0 comments on commit b88d6bc

Please sign in to comment.