Skip to content

Commit

Permalink
Fixed compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
bretislav.wajtr committed Dec 31, 2016
1 parent 83b53ae commit f6b3396
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.sql.Date;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors;

import static com.clevergang.dbtests.repository.impl.jooq.generated.Tables.*;
Expand Down Expand Up @@ -70,7 +69,7 @@ public Company findCompanyUsingSimpleStaticStatement(Integer pid) {
return DSL.using(configuration)
.selectFrom(COMPANY)
.where(COMPANY.PID.eq(pid))
.fetchOneInto(Company.class));
.fetchOneInto(Company.class);
}

@Override
Expand Down

0 comments on commit f6b3396

Please sign in to comment.