Skip to content

Commit

Permalink
Merge pull request #2076 from nothingzhl/test
Browse files Browse the repository at this point in the history
Rewrite URLs referencing archived issues
  • Loading branch information
harawata committed Sep 30, 2020
2 parents 24d672c + c6df26c commit 6c6756c
Show file tree
Hide file tree
Showing 6 changed files with 10 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 Expand Up @@ -28,7 +28,7 @@
*
* @author Eduardo Macarron
*
* @see <a href='http://code.google.com/p/mybatis/issues/detail?id=342'>Issue 342</a>
* @see <a href='https://github.com/mybatis/old-google-code-issues/issues/342'>Issue 342</a>
*/
public final class OgnlCache {

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 Expand Up @@ -69,7 +69,7 @@ class DefaultResultSetHandlerTest {
/**
* Contrary to the spec, some drivers require case-sensitive column names when getting result.
*
* @see <a href="http://code.google.com/p/mybatis/issues/detail?id=557">Issue 557</a>
* @see <a href="https://github.com/mybatis/old-google-code-issues/issues/557">Issue 557</a>
*/
@Test
void shouldRetainColumnNameCase() throws Exception {
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 All @@ -23,7 +23,8 @@
import org.junit.jupiter.api.Test;

/**
* @see http://code.google.com/p/mybatis/issues/detail?id=291
* @see <a href="https://github.com/mybatis/old-google-code-issues/issues/291>Issue 291</a>
*
*/
class ExternalRefidResolutionTest {
@Test
Expand Down
Expand Up @@ -24,7 +24,6 @@
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.jupiter.api.Test;

//@Disabled("see issue #614")
class SerializeCircularTest {

@Test
Expand All @@ -41,7 +40,6 @@ void serializeAndDeserializeObjectsWithAggressiveLazyLoadingWithPreloadingAttrib
}
}

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

0 comments on commit 6c6756c

Please sign in to comment.