Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove DREM TFInput directory warning #1

Open
agitter opened this issue Aug 21, 2019 · 0 comments
Open

Remove DREM TFInput directory warning #1

agitter opened this issue Aug 21, 2019 · 0 comments

Comments

@agitter
Copy link
Owner

agitter commented Aug 21, 2019

This code

String[] children = dir.list();
if (children == null)
{
System.out.println("The directory "+SZSTATICDIR+" was not found."+
"Directory not found");
}
else
{
staticsourceArray = new String[children.length+1];
staticsourceArray[0] = "User Provided";
for (int i=0; i<children.length; i++)
{
// Get filename of file or directory
staticsourceArray[i+1] =children[i];
}
}

Checks whether the directory from which SDREM is run contains a subdirectory named TFInput. The DREM GUI needs this but SDREM does not. The code can likely be removed safely but should be tested.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant