File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
core/src/main/scala/org/elasticmq Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 21
21
uses : actions/setup-java@v2
22
22
with :
23
23
distribution : ' temurin'
24
- java-version : 11
24
+ java-version : 8
25
25
26
26
- name : Cache SBT
27
27
id : cache-sbt
52
52
uses : actions/setup-java@v2
53
53
with :
54
54
distribution : ' temurin'
55
- java-version : 11
55
+ java-version : 8
56
56
57
57
- name : Cache SBT
58
58
id : cache-sbt
83
83
uses : actions/setup-java@v2
84
84
with :
85
85
distribution : ' temurin'
86
- java-version : 11
86
+ java-version : 8
87
87
88
88
- name : Cache SBT
89
89
id : cache-sbt
@@ -117,7 +117,7 @@ jobs:
117
117
uses : actions/setup-java@v2
118
118
with :
119
119
distribution : ' temurin'
120
- java-version : 11
120
+ java-version : 8
121
121
122
122
- name : Cache sbt
123
123
uses : actions/cache@v2
Original file line number Diff line number Diff line change 15
15
- name : Set up JDK 11
16
16
uses : actions/setup-java@v1
17
17
with :
18
- java-version : 11
18
+ java-version : 8
19
19
- name : Cache sbt
20
20
uses : actions/cache@v2
21
21
with :
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ case class NodeAddress(
10
10
def fullAddress : String = protocol + " ://" + hostAndPort + suffix
11
11
def isWildcard : Boolean = host == " *"
12
12
def contextPathStripped : String = contextPath.stripPrefix(" /" ).stripSuffix(" /" )
13
- def suffix = if (contextPath.isBlank ) " " else " /" + contextPathStripped
13
+ def suffix : String = if (contextPath.trim.isEmpty ) " " else " /" + contextPathStripped
14
14
}
You can’t perform that action at this time.
0 commit comments