Skip to content

Commit

Permalink
Deploying to gh-pages from @ 41dc9e4 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] committed Nov 11, 2023
1 parent e1178b8 commit 4d58f14
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Binary file modified 4.2.0-SNAPSHOT/apidocs/member-search-index.zip
Binary file not shown.
Binary file modified 4.2.0-SNAPSHOT/apidocs/package-search-index.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
<span class="sourceLineNo">296</span><a id="line.296"> if (origComment != null) {</a>
<span class="sourceLineNo">297</span><a id="line.297"> final List&lt;ConfigNodeComment&gt; nodes = new ArrayList&lt;&gt;();</a>
<span class="sourceLineNo">298</span><a id="line.298"> for (final String line : CONFIGURATE_LINE_PATTERN.split(origComment, -1)) {</a>
<span class="sourceLineNo">299</span><a id="line.299"> if (line.charAt(0) == '#') {</a>
<span class="sourceLineNo">299</span><a id="line.299"> if (line.length() != 0 &amp;&amp; line.charAt(0) == '#') {</a>
<span class="sourceLineNo">300</span><a id="line.300"> // allow lines that are only the comment character, for box drawing</a>
<span class="sourceLineNo">301</span><a id="line.301"> nodes.add(ConfigNodeComment.hashComment(line));</a>
<span class="sourceLineNo">302</span><a id="line.302"> } else {</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
<span class="sourceLineNo">296</span><a id="line.296"> if (origComment != null) {</a>
<span class="sourceLineNo">297</span><a id="line.297"> final List&lt;ConfigNodeComment&gt; nodes = new ArrayList&lt;&gt;();</a>
<span class="sourceLineNo">298</span><a id="line.298"> for (final String line : CONFIGURATE_LINE_PATTERN.split(origComment, -1)) {</a>
<span class="sourceLineNo">299</span><a id="line.299"> if (line.charAt(0) == '#') {</a>
<span class="sourceLineNo">299</span><a id="line.299"> if (line.length() != 0 &amp;&amp; line.charAt(0) == '#') {</a>
<span class="sourceLineNo">300</span><a id="line.300"> // allow lines that are only the comment character, for box drawing</a>
<span class="sourceLineNo">301</span><a id="line.301"> nodes.add(ConfigNodeComment.hashComment(line));</a>
<span class="sourceLineNo">302</span><a id="line.302"> } else {</a>
Expand Down
Binary file modified 4.2.0-SNAPSHOT/apidocs/type-search-index.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ <h1>Configurate</h1>
</ul>
</main>
<footer>
<small>Last updated Sat Nov 11 04:08:27 UTC 2023 | Configurate is released under the terms of the <a
<small>Last updated Sat Nov 11 05:32:15 UTC 2023 | Configurate is released under the terms of the <a
href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</a> license</small>
</footer>
</div>
Expand Down

0 comments on commit 4d58f14

Please sign in to comment.