Skip to content

Commit

Permalink
Added an extension (from a Mopac manual), fixing a failing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jul 16, 2016
1 parent 51d39b7 commit 38b2f34
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -57,7 +57,9 @@ public String getPreferredNameExtension() {
/** {@inheritDoc} */
@Override
public String[] getNameExtensions() {
return new String[0];
String[] extensions = new String[1];
extensions[0] = "dat";
return extensions;
}

/** {@inheritDoc} */
Expand Down

0 comments on commit 38b2f34

Please sign in to comment.