Skip to content

Commit

Permalink
Replaced two more URLs, updated license headers, removed extra blank …
Browse files Browse the repository at this point in the history
…lines
  • Loading branch information
harawata committed Sep 30, 2020
1 parent f1c6172 commit c6df26c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
@@ -1,5 +1,5 @@
/**
* Copyright 2009-2018 the original author or authors.
* Copyright 2009-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/ibatis/session/Configuration.java
Expand Up @@ -142,7 +142,7 @@ public class Configuration {
* Configuration factory class.
* Used to create Configuration for loading deserialized unread properties.
*
* @see <a href='https://code.google.com/p/mybatis/issues/detail?id=300'>Issue 300 (google code)</a>
* @see <a href='https://github.com/mybatis/old-google-code-issues/issues/300'>Issue 300 (google code)</a>
*/
protected Class<?> configurationFactory;

Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright 2009-2019 the original author or authors.
* Copyright 2009-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -30,7 +30,7 @@ class UnpooledDataSourceTest {

@Test
void shouldNotRegisterTheSameDriverMultipleTimes() throws Exception {
// https://code.google.com/p/mybatis/issues/detail?id=430
// https://github.com/mybatis/old-google-code-issues/issues/430
UnpooledDataSource dataSource = null;
dataSource = new UnpooledDataSource("org.hsqldb.jdbcDriver", "jdbc:hsqldb:mem:multipledrivers", "sa", "");
dataSource.getConnection().close();
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright 2009-2019 the original author or authors.
* Copyright 2009-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright 2009-2019 the original author or authors.
* Copyright 2009-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Expand Up @@ -24,8 +24,6 @@
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.jupiter.api.Test;



class SerializeCircularTest {

@Test
Expand All @@ -42,9 +40,6 @@ void serializeAndDeserializeObjectsWithAggressiveLazyLoadingWithPreloadingAttrib
}
}

/**
* @see <a href="https://github.com/mybatis/old-google-code-issues/issues/614">Issue 614</a>
*/
@Test
void serializeAndDeserializeObjectsWithoutAggressiveLazyLoadingWithoutPreloadingAttribute() throws Exception {
try (SqlSession sqlSession = createSessionWithoutAggressiveLazyLoading()) {
Expand Down

0 comments on commit c6df26c

Please sign in to comment.