Skip to content

Commit 6c6756c

Browse files
authored
Merge pull request #2076 from nothingzhl/test
Rewrite URLs referencing archived issues
2 parents 24d672c + c6df26c commit 6c6756c

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

src/main/java/org/apache/ibatis/scripting/xmltags/OgnlCache.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2018 the original author or authors.
2+
* Copyright 2009-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
*
2929
* @author Eduardo Macarron
3030
*
31-
* @see <a href='http://code.google.com/p/mybatis/issues/detail?id=342'>Issue 342</a>
31+
* @see <a href='https://github.com/mybatis/old-google-code-issues/issues/342'>Issue 342</a>
3232
*/
3333
public final class OgnlCache {
3434

src/main/java/org/apache/ibatis/session/Configuration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public class Configuration {
142142
* Configuration factory class.
143143
* Used to create Configuration for loading deserialized unread properties.
144144
*
145-
* @see <a href='https://code.google.com/p/mybatis/issues/detail?id=300'>Issue 300 (google code)</a>
145+
* @see <a href='https://github.com/mybatis/old-google-code-issues/issues/300'>Issue 300 (google code)</a>
146146
*/
147147
protected Class<?> configurationFactory;
148148

src/test/java/org/apache/ibatis/datasource/unpooled/UnpooledDataSourceTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2019 the original author or authors.
2+
* Copyright 2009-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -30,7 +30,7 @@ class UnpooledDataSourceTest {
3030

3131
@Test
3232
void shouldNotRegisterTheSameDriverMultipleTimes() throws Exception {
33-
// https://code.google.com/p/mybatis/issues/detail?id=430
33+
// https://github.com/mybatis/old-google-code-issues/issues/430
3434
UnpooledDataSource dataSource = null;
3535
dataSource = new UnpooledDataSource("org.hsqldb.jdbcDriver", "jdbc:hsqldb:mem:multipledrivers", "sa", "");
3636
dataSource.getConnection().close();

src/test/java/org/apache/ibatis/executor/resultset/DefaultResultSetHandlerTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2019 the original author or authors.
2+
* Copyright 2009-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -69,7 +69,7 @@ class DefaultResultSetHandlerTest {
6969
/**
7070
* Contrary to the spec, some drivers require case-sensitive column names when getting result.
7171
*
72-
* @see <a href="http://code.google.com/p/mybatis/issues/detail?id=557">Issue 557</a>
72+
* @see <a href="https://github.com/mybatis/old-google-code-issues/issues/557">Issue 557</a>
7373
*/
7474
@Test
7575
void shouldRetainColumnNameCase() throws Exception {

src/test/java/org/apache/ibatis/submitted/refid_resolution/ExternalRefidResolutionTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2019 the original author or authors.
2+
* Copyright 2009-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,8 @@
2323
import org.junit.jupiter.api.Test;
2424

2525
/**
26-
* @see http://code.google.com/p/mybatis/issues/detail?id=291
26+
* @see <a href="https://github.com/mybatis/old-google-code-issues/issues/291>Issue 291</a>
27+
*
2728
*/
2829
class ExternalRefidResolutionTest {
2930
@Test

src/test/java/org/apache/ibatis/submitted/serializecircular/SerializeCircularTest.java

-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
2525
import org.junit.jupiter.api.Test;
2626

27-
//@Disabled("see issue #614")
2827
class SerializeCircularTest {
2928

3029
@Test
@@ -41,7 +40,6 @@ void serializeAndDeserializeObjectsWithAggressiveLazyLoadingWithPreloadingAttrib
4140
}
4241
}
4342

44-
// @Disabled("See http://code.google.com/p/mybatis/issues/detail?id=614")
4543
@Test
4644
void serializeAndDeserializeObjectsWithoutAggressiveLazyLoadingWithoutPreloadingAttribute() throws Exception {
4745
try (SqlSession sqlSession = createSessionWithoutAggressiveLazyLoading()) {

0 commit comments

Comments
 (0)