Merge pull request #3461 from meowy/patch-1

* pr/3461:
  Fix typo in jOOQ example code
This commit is contained in:
Phillip Webb
2015-07-10 13:54:53 -07:00

View File

@@ -2245,8 +2245,8 @@ application `DataSource`. To use the `DSLContext` you can just `@Autowire` it:
private final DSLContext create;
@Autowired
public JooqExample(DSLContext dlsContext) {
this.create = dlsContext;
public JooqExample(DSLContext dslContext) {
this.create = dslContext;
}
}