Skip to content

Commit d91e7d4

Browse files
committed
0.14.3 - Forgot to remove test code from MainParser
1 parent c9ff08c commit d91e7d4

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/
44

55

66
--------
7-
###[0.14.2](N/A) - 2017-02-06
7+
###[0.14.3](N/A) - 2017-02-06
8+
#### Changed
9+
* Forgot to remove test code from MainParser
10+
11+
12+
--------
13+
###[0.14.2](https://github.com/TeamworkGuy2/JParseCode/commit/c9ff08c26752a18e8f38e4365181876d81461190) - 2017-02-06
814
#### Changed
915
* Removed lombok.val usage/dependency from from test classes.
1016

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
JParseCode
22
==============
3-
version: 0.14.2
3+
version: 0.14.3
44

55
In progress C#/Java/TypeScript parser tools built atop [JTextParser] (https://github.com/TeamworkGuy2/JTextParser), [Jackson] (https://github.com/FasterXML/jackson-core/) (core, databind, annotations) and half a dozen other utility libraries.
66

bin/jparse_code-with-tests.jar

458 Bytes
Binary file not shown.

bin/jparse_code.jar

401 Bytes
Binary file not shown.

package-lib.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version" : "0.14.2",
2+
"version" : "0.14.3",
33
"name" : "jparse-code",
44
"description" : "An in-progress suite of parsing/transpilation tools for C#, Java, and TypeScript code. Generates simple JSON ASTs.",
55
"homepage" : "https://github.com/TeamworkGuy2/JParseCode",

src/twg2/parser/main/MainParser.java

-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import twg2.io.files.FileReadUtil;
1919
import twg2.parser.codeParser.analytics.PerformanceTrackers;
2020
import twg2.parser.codeParser.csharp.CsBlock;
21-
import twg2.parser.codeParser.test.JavaClassParseTest;
2221
import twg2.parser.codeParser.tools.NameUtil;
2322
import twg2.parser.language.CodeLanguage;
2423
import twg2.parser.output.WriteSettings;
@@ -77,12 +76,6 @@ public static void parseAndValidProjectCsClasses(FileReadUtil fileReader) throws
7776

7877

7978
public static void main(String[] args) throws IOException, FileFormatException {
80-
new JavaClassParseTest().parseBlocksTest();
81-
82-
if(3/1.4 > 1.6) {
83-
return;
84-
}
85-
8679
boolean multithread = false;
8780
boolean logPerformance = false;
8881
ExecutorService executor = multithread ? Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()) : null;

0 commit comments

Comments
 (0)