Skip to content

Commit

Permalink
Fix Java compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed Jun 20, 2024
1 parent d4cb99b commit c00b057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/lflang/generator/LFGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static FileConfig createFileConfig(
case Python -> new PyFileConfig(resource, srcGenBasePath, useHierarchicalBin);
case CPP -> new CppFileConfig(resource, srcGenBasePath, useHierarchicalBin);
case Rust -> new RustFileConfig(resource, srcGenBasePath, useHierarchicalBin);
case TS -> new TSFileConfig(resource, srcGenBasePath, useHierarchicalBin);
case TS -> new TSFileConfig(resource, srcGenBasePath, useHierarchicalBin, null);
};
} catch (IOException e) {
throw new RuntimeException(
Expand Down

0 comments on commit c00b057

Please sign in to comment.