Skip to content

Commit

Permalink
0.0.4-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Dec 27, 2020
1 parent c42cc3f commit 93882ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![We recommend IntelliJ IDEA](http://amihaiemil.github.io/images/intellij-idea-recommend.svg)](https://www.jetbrains.com/idea/)


TODO Finder CLI, version `0.0.2`.
TODO Finder CLI, version `0.0.3`.

This is a small Java CLI tool which scans the directory where it's being run and reports all the TODOs or FIXMEs found in the code files.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.selfxdsd</groupId>
<artifactId>todo-finder-cli</artifactId>
<version>0.0.3-SNAPSHOT</version>
<version>0.0.4-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
Expand Down

1 comment on commit 93882ea

@charlesmike
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rultor There's been a problem while parsing the to-dos in the code. Most likely, the format is not correct. Read more about the to-do format here. If you can't understand the error, just open an Issue here.

Parse result:

ERROR: README.md; puzzle at line #1; TODO found, but puzzle can't be parsed, most probably because TODO is not followed by a puzzle marker, as this page explains: https://github.com/yegor256/pdd#how-to-format
If you can't understand the cause of this issue or you don't know how to fix it, please submit a GitHub issue, we will try to help you: https://github.com/yegor256/pdd/issues. This tool is still in its beta version and we will appreciate your feedback. Here is where you can find more documentation: https://github.com/yegor256/pdd/blob/master/README.md.

Error:

Content is not allowed in prolog.

org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; Content is not allowed in prolog.
	at java.xml/com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:261)
	at java.xml/com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:339)
	at com.selfxdsd.todos.DocumentPuzzles.process(DocumentPuzzles.java:91)
	at com.selfxdsd.todos.DocumentPuzzles.process(DocumentPuzzles.java:51)
	at com.selfxdsd.todos.SshPuzzles.process(SshPuzzles.java:109)
	at com.selfxdsd.todos.SshPuzzles.process(SshPuzzles.java:55)
	at com.selfxdsd.todos.PuzzlesComponent.review(PuzzlesComponent.java:94)
	at com.selfxdsd.todos.PuzzlesComponent$$FastClassBySpringCGLIB$$b6270321.invoke(<generated>)
	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:771)
	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
	at org.springframework.aop.interceptor.AsyncExecutionInterceptor.lambda$invoke$0(AsyncExecutionInterceptor.java:115)
	at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:834)

Please sign in to comment.