Merge pull request #208 from hapifhir/comparison_test_fix_github_is_dumb
Comparison test fix
This commit is contained in:
commit
71beac4d52
|
@ -863,6 +863,9 @@ public class HierarchicalTableGenerator extends TranslatingUtilities {
|
|||
b.append(".png");
|
||||
String file = Utilities.path(dest, b.toString());
|
||||
if (!new File(file).exists()) {
|
||||
File newFile = new File(file);
|
||||
newFile.getParentFile().mkdirs();
|
||||
newFile.createNewFile();
|
||||
FileOutputStream stream = new FileOutputStream(file);
|
||||
genImage(indents, hasChildren, lineColor, stream);
|
||||
if (outputTracker!=null)
|
||||
|
|
Loading…
Reference in New Issue