There was an error while loading. Please reload this page.
1 parent 23b2c73 commit 8261bccCopy full SHA for 8261bcc
cruise.umple/src/UmpleInternalParser_CodeParserHandlers.ump
@@ -50,9 +50,9 @@ class UseStatementParserAction{
50
//TODO: this issue must be investigated more. Currently it is working with the following solution.
51
File f = new File(fileName);
52
if (!f.exists()) fileName = path +value;
53
- if(!data.getHasParsed().contains(fileName))
+ if(!data.getHasParsed().contains(f.getAbsolutePath()))
54
{
55
- data.getHasParsed().add(fileName);
+ data.getHasParsed().add(f.getAbsolutePath());
56
RuleBasedParserThread thread = new RuleBasedParserThread(
57
data.getAnalyzer().getRules().get("$ROOT$"),
58
token,
0 commit comments