Skip to content

Commit

Permalink
Move brace (code review)
Browse files Browse the repository at this point in the history
  • Loading branch information
djh82 committed Jul 19, 2012
1 parent 0deeda9 commit 7496008
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/junit/experimental/theories/Theories.java
Expand Up @@ -34,8 +34,7 @@ protected void collectInitializationErrors(List<Throwable> errors) {
private void validateDataPointFields(List<Throwable> errors) {
Field[] fields= getTestClass().getJavaClass().getDeclaredFields();

for (Field field : fields)
{
for (Field field : fields) {
if (field.getAnnotation(DataPoint.class) == null)
continue;
if (!Modifier.isStatic(field.getModifiers()))
Expand Down

0 comments on commit 7496008

Please sign in to comment.