Standardize Build
Fixes gh-769
This commit is contained in:
@@ -53,9 +53,7 @@ public class FindByUsernameTests {
|
||||
|
||||
@After
|
||||
public void tearDown() {
|
||||
if (this.driver != null) {
|
||||
this.driver.quit();
|
||||
}
|
||||
this.driver.quit();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
@@ -20,10 +20,10 @@
|
||||
</tr>
|
||||
<tr th:each="sessionElement : ${sessions}" th:with="details=${sessionElement.getAttribute('SESSION_DETAILS')}">
|
||||
<td th:text="${sessionElement.id.substring(30)}"></td>
|
||||
<td th:text="${details.location}"></td>
|
||||
<td th:text="${details?.location}"></td>
|
||||
<td th:text="${#dates.format(new java.util.Date(sessionElement.creationTime),'dd/MMM/yyyy HH:mm:ss')}"></td>
|
||||
<td th:text="${#dates.format(new java.util.Date(sessionElement.lastAccessedTime),'dd/MMM/yyyy HH:mm:ss')}"></td>
|
||||
<td th:text="${details.accessType}"></td>
|
||||
<td th:text="${details?.accessType}"></td>
|
||||
<td>
|
||||
<form th:action="@{'/sessions/' + ${sessionElement.id}}" th:method="delete">
|
||||
<input th:id="'terminate-' + ${sessionElement.id}" type="submit" value="Terminate" th:disabled="${sessionElement.id == #httpSession.id}"/>
|
||||
|
||||
Reference in New Issue
Block a user