-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue in metadata JSON when solution contains multiple files (#107)
- Loading branch information
1 parent
2e62760
commit 9e77026
Showing
23 changed files
with
308 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package representer; | ||
|
||
import com.github.javaparser.ParserConfiguration; | ||
import com.github.javaparser.symbolsolver.JavaSymbolSolver; | ||
import com.github.javaparser.symbolsolver.resolution.typesolvers.CombinedTypeSolver; | ||
import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver; | ||
|
||
class ParserConfigurationFactory { | ||
static ParserConfiguration getParserConfiguration() { | ||
CombinedTypeSolver comb = new CombinedTypeSolver(new ReflectionTypeSolver()); | ||
JavaSymbolSolver solver = new JavaSymbolSolver(comb); | ||
return new ParserConfiguration().setSymbolResolver(solver); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
src/main/java/representer/RepresentationSerializatorImpl.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.