Skip to content

Commit 9bbf009

Browse files
committed
Make javadoc lint happy
1 parent 5172c3a commit 9bbf009

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

jbake-core/src/main/java/org/jbake/app/ContentStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private void activateOnCurrentThread() {
176176
/**
177177
* Get a document by sourceUri and update it from the given map.
178178
* @return the saved document.
179-
* @throws Exception if sourceUri or docType are null, or if the document doesn't exist.
179+
* throws {@link IllegalArgumentException} if sourceUri or docType are null, or if the document doesn't exist.
180180
*/
181181
public ODocument mergeDocument(Map<String, Object> incomingDocMap)
182182
{

jbake-core/src/main/java/org/jbake/app/configuration/JBakeConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,12 +332,12 @@ public interface JBakeConfiguration {
332332
Charset getInputCharset();
333333

334334
/**
335-
* Should JBake prefix <img src="..."> with site base URL?
335+
* Should JBake prefix &lt;img src="..."&gt; with site base URL?
336336
*/
337337
boolean getMakeImagesUrlAbolute();
338338

339339
/**
340-
* Should JBake prefix <img src="..."> with site base URL relative URLs?
340+
* Should JBake prefix &lt;img src="..."&gt; with site base URL relative URLs?
341341
* This is not disjunctive from IMAGES_URL_MAKE_ABSOLUTE.
342342
*/
343343
boolean getRelativeImagePathsPointToAssets();

jbake-core/src/main/java/org/jbake/parser/AsciidoctorEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public Map<String, String> parseHeaderBlock(final ParserContext context) {
121121
documentModel.put(key, attributes.get(key));
122122
}
123123
}
124-
124+
125125
return null; // TODO: Create the header map first, then apply to the doc.
126126
}
127127

jbake-core/src/main/java/org/jbake/parser/texy/TitleExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void tryExtractHighestHeader(ParserContext context)
7676

7777
/**
7878
* Getting an inner XML is a bit complicated in JDK.
79-
* TODO: All this just to get rid if the previously added <div>? Let's use JSoup I guess.
79+
* TODO: All this just to get rid if the previously added &lt;div/&gt;? Let's use JSoup I guess.
8080
*/
8181
public static String innerXml(Node docRootNode)
8282
{

0 commit comments

Comments
 (0)