Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite URLs referencing archived issues #2076

Merged
merged 3 commits into from Sep 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -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