Replace http with https in tests

This commit is contained in:
Ilya Matveev
2019-02-19 12:54:05 +03:00
parent 46d32c6064
commit 8c13aade45
5 changed files with 6 additions and 6 deletions
@@ -7,7 +7,7 @@ package kotlin.ranges
/** /**
* Represents a range of values (for example, numbers or characters). * Represents a range of values (for example, numbers or characters).
* See the [Kotlin language documentation](http://kotlinlang.org/docs/reference/ranges.html) for more information. * See the [Kotlin language documentation](https://kotlinlang.org/docs/reference/ranges.html) for more information.
*/ */
public interface ClosedRange<T: Comparable<T>> { public interface ClosedRange<T: Comparable<T>> {
/** /**
@@ -9,7 +9,7 @@ import kotlin.native.internal.FixmeReflection
/** /**
* Represents an annotated element and allows to obtain its annotations. * Represents an annotated element and allows to obtain its annotations.
* See the [Kotlin language documentation](http://kotlinlang.org/docs/reference/annotations.html) * See the [Kotlin language documentation](https://kotlinlang.org/docs/reference/annotations.html)
* for more information. * for more information.
*/ */
@FixmeReflection @FixmeReflection
@@ -8,7 +8,7 @@ package kotlin.reflect
/** /**
* Represents a class and provides introspection capabilities. * Represents a class and provides introspection capabilities.
* Instances of this class are obtainable by the `::class` syntax. * Instances of this class are obtainable by the `::class` syntax.
* See the [Kotlin language documentation](http://kotlinlang.org/docs/reference/reflection.html#class-references) * See the [Kotlin language documentation](https://kotlinlang.org/docs/reference/reflection.html#class-references)
* for more information. * for more information.
* *
* @param T the type of the class. * @param T the type of the class.
@@ -11,7 +11,7 @@ import kotlin.native.internal.FixmeReflection
* Represents a property, such as a named `val` or `var` declaration. * Represents a property, such as a named `val` or `var` declaration.
* Instances of this class are obtainable by the `::` operator. * Instances of this class are obtainable by the `::` operator.
* *
* See the [Kotlin language documentation](http://kotlinlang.org/docs/reference/reflection.html) * See the [Kotlin language documentation](https://kotlinlang.org/docs/reference/reflection.html)
* for more information. * for more information.
* *
* @param R the type of the property. * @param R the type of the property.
@@ -858,8 +858,8 @@ class ExperimentalPluginTests {
} }
repositories { repositories {
maven { url "http://kotlin.bintray.com/kotlin-eap" } maven { url "https://kotlin.bintray.com/kotlin-eap" }
maven { url "http://kotlin.bintray.com/kotlin-dev" } maven { url "https://kotlin.bintray.com/kotlin-dev" }
maven { url "${MultiplatformSpecification.KOTLIN_REPO}" } maven { url "${MultiplatformSpecification.KOTLIN_REPO}" }
} }