Skip to content

Commit

Permalink
ForceFieldConfigurator checkForceFieldType correction
Browse files Browse the repository at this point in the history
Change-Id: I665d38273b6381f775ddf35df22af2b6b71abc59
Signed-off-by: Egon Willighagen <egonw@users.sourceforge.net>
  • Loading branch information
danielszisz authored and egonw committed Apr 6, 2012
1 parent 364c9a4 commit 2c4f244
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -103,7 +103,7 @@ public String[] getFfTypes(){
*/
public boolean checkForceFieldType(String ffname) {
boolean check=false;
for (int i = 0; i <= fftypes.length; i++) {
for (int i = 0; i < fftypes.length; i++) {
if (fftypes[i].equals(ffname)) {
check=true;
break;
Expand Down

0 comments on commit 2c4f244

Please sign in to comment.