Skip to content

Commit e1f4672

Browse files
committed
Fix wrong method return value
See gh-366
1 parent a0affee commit e1f4672

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/site/es/xdoc/getting-started.xml.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
<source><![CDATA[
7373
@Bean
74-
public SqlSessionFactoryBean sqlSessionFactory() throws Exception {
74+
public SqlSessionFactory sqlSessionFactory() throws Exception {
7575
SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean();
7676
factoryBean.setDataSource(dataSource());
7777
return factoryBean.getObject();

src/site/ja/xdoc/getting-started.xml.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
<source><![CDATA[
6969
@Bean
70-
public SqlSessionFactoryBean sqlSessionFactory() throws Exception {
70+
public SqlSessionFactory sqlSessionFactory() throws Exception {
7171
SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean();
7272
factoryBean.setDataSource(dataSource());
7373
return factoryBean.getObject();

src/site/ko/xdoc/getting-started.xml.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
<source><![CDATA[
5959
@Bean
60-
public SqlSessionFactoryBean sqlSessionFactory() throws Exception {
60+
public SqlSessionFactory sqlSessionFactory() throws Exception {
6161
SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean();
6262
factoryBean.setDataSource(dataSource());
6363
return factoryBean.getObject();

src/site/xdoc/getting-started.xml.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080

8181
<source><![CDATA[
8282
@Bean
83-
public SqlSessionFactoryBean sqlSessionFactory() throws Exception {
83+
public SqlSessionFactory sqlSessionFactory() throws Exception {
8484
SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean();
8585
factoryBean.setDataSource(dataSource());
8686
return factoryBean.getObject();

0 commit comments

Comments
 (0)