Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix compile error on build server
  • Loading branch information
chenson42 committed Feb 23, 2012
1 parent 6f18bc5 commit be42015
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -674,8 +674,9 @@ public Logger getLog() {
return log;
}

@SuppressWarnings("unchecked")
public <T> T getDataSource() {
return getSymmetricDialect().getPlatform().getDataSource();
return (T)getSymmetricDialect().getPlatform().getDataSource();
}

}

0 comments on commit be42015

Please sign in to comment.