Replace http with https in tests
This commit is contained in:
@@ -7,7 +7,7 @@ package kotlin.ranges
|
||||
|
||||
/**
|
||||
* 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>> {
|
||||
/**
|
||||
|
||||
@@ -9,7 +9,7 @@ import kotlin.native.internal.FixmeReflection
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
@FixmeReflection
|
||||
|
||||
@@ -8,7 +8,7 @@ package kotlin.reflect
|
||||
/**
|
||||
* Represents a class and provides introspection capabilities.
|
||||
* 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.
|
||||
*
|
||||
* @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.
|
||||
* 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.
|
||||
*
|
||||
* @param R the type of the property.
|
||||
|
||||
@@ -858,8 +858,8 @@ class ExperimentalPluginTests {
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven { url "http://kotlin.bintray.com/kotlin-eap" }
|
||||
maven { url "http://kotlin.bintray.com/kotlin-dev" }
|
||||
maven { url "https://kotlin.bintray.com/kotlin-eap" }
|
||||
maven { url "https://kotlin.bintray.com/kotlin-dev" }
|
||||
maven { url "${MultiplatformSpecification.KOTLIN_REPO}" }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user