Skip to content

Commit aefd7cf

Browse files
committed
fix: Fix format.
Signed-off-by: Sun Yuhan <[email protected]>
1 parent a610007 commit aefd7cf

File tree

1 file changed

+2
-1
lines changed
  • memory/repository/spring-ai-model-chat-memory-repository-jdbc/src/main/java/org/springframework/ai/chat/memory/repository/jdbc

1 file changed

+2
-1
lines changed

memory/repository/spring-ai-model-chat-memory-repository-jdbc/src/main/java/org/springframework/ai/chat/memory/repository/jdbc/JdbcChatMemoryRepository.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ private JdbcChatMemoryRepository(JdbcTemplate jdbcTemplate, JdbcChatMemoryReposi
6060
Assert.notNull(jdbcTemplate.getDataSource(), "dataSource can not be null");
6161
this.jdbcTemplate = jdbcTemplate;
6262
this.dialect = dialect;
63-
this.transactionTemplate = new TransactionTemplate(new DataSourceTransactionManager(jdbcTemplate.getDataSource()));
63+
this.transactionTemplate = new TransactionTemplate(
64+
new DataSourceTransactionManager(jdbcTemplate.getDataSource()));
6465
}
6566

6667
@Override

0 commit comments

Comments
 (0)