File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ public final class VerifyURLBuilder {
196196 * Whether response should be logged on response, by default it is logged on trace level.
197197 */
198198 VerifyURLBuilder logResponse (boolean logResponse ) {
199- this . logResponse = this . logResponse
199+ this . logResponse = logResponse
200200 return this
201201 }
202202
Original file line number Diff line number Diff line change @@ -137,9 +137,9 @@ class IIS extends ServerAbstract {
137137 }
138138
139139 // remove last ","
140- propertiesString = propertiesString. substring(0 , propertiesString. length() - 2 )
140+ String props = propertiesString. substring(0 , propertiesString. length() - 2 ) . toString( )
141141
142- return executeAppcmd(" set config /section:${ section} /${ op} \" [${ propertiesString } ]\" " )
142+ return executeAppcmd(" set config /section:${ section} /${ op} \" [${ props } ]\" " )
143143 }
144144
145145 /**
You can’t perform that action at this time.
0 commit comments