Skip to content

Commit 4109690

Browse files
committed
Fix whitespace issues
1 parent b3a5cd3 commit 4109690

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

streaming-chat/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ If the tests pass, you see a similar output to the following example:
111111
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.101 s...
112112
[INFO]
113113
[INFO] Results:
114-
[INFO]
114+
[INFO]
115115
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
116116
```
117117

streaming-chat/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?xml version="1.0" encoding="UTF-8" ?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -16,7 +16,6 @@
1616
</properties>
1717

1818
<dependencies>
19-
2019
<dependency>
2120
<groupId>jakarta.platform</groupId>
2221
<artifactId>jakarta.jakartaee-api</artifactId>

streaming-chat/src/main/webapp/streamingChat.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var messagesTableBody = document.getElementById('messagesTableBody');
22
var thinkingRow = document.createElement('tr');
33
thinkingRow.setAttribute('id', 'thinking');
4-
thinkingRow.innerHTML = '<td><p class=\"thinking-msg\">thinking...</p></td>' +
4+
thinkingRow.innerHTML = '<td><p class=\"thinking-msg\">thinking...</p></td>' +
55
'<td></td>';
66

77
function getTime() {
@@ -19,7 +19,7 @@
1919
function sendMessage() {
2020
var myMessageRow = document.createElement('tr');
2121
var myMessage = document.getElementById('myMessage').value;
22-
myMessageRow.innerHTML = '<td><p class=\"my-msg\">' + myMessage + '</p></td>' +
22+
myMessageRow.innerHTML = '<td><p class=\"my-msg\">' + myMessage + '</p></td>' +
2323
'<td>' + getTime() + '</td>';
2424
messagesTableBody.appendChild(myMessageRow);
2525
messagesTableBody.appendChild(thinkingRow);

0 commit comments

Comments
 (0)