From 9bc08da6c641e5e5f33c7b6c8f328d495f9e8c8e Mon Sep 17 00:00:00 2001 From: "Vitaliy.Bibaev" Date: Thu, 19 Oct 2017 10:55:31 +0300 Subject: [PATCH] Update copyright headers in test sources --- .../debugger/streams/kotlin/JdkManager.kt | 16 +--------------- .../kotlin/KotlinPsiChainBuilderTestCase.kt | 2 ++ .../debugger/streams/kotlin/LibraryManager.kt | 2 ++ .../debugger/streams/kotlin/dsl/KotlinDslTest.kt | 2 ++ .../kotlin/exec/KotlinEvaluationTestCase.kt | 2 ++ .../streams/kotlin/exec/KotlinOutputChecker.kt | 16 +--------------- .../streams/kotlin/exec/java/JavaStreamTest.kt | 2 ++ .../kotlin/psi/java/NegativeJavaStreamTest.kt | 2 ++ .../kotlin/psi/java/PositiveJavaStreamTest.kt | 2 ++ .../kotlin/psi/java/PositiveStreamExTest.kt | 2 ++ 10 files changed, 18 insertions(+), 30 deletions(-) diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/JdkManager.kt b/idea/tests/com/intellij/debugger/streams/kotlin/JdkManager.kt index dcf77f1627e..1d1cdf75594 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/JdkManager.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/JdkManager.kt @@ -1,18 +1,4 @@ -/* - * Copyright 2000-2017 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin import com.intellij.openapi.projectRoots.JavaSdk diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/KotlinPsiChainBuilderTestCase.kt b/idea/tests/com/intellij/debugger/streams/kotlin/KotlinPsiChainBuilderTestCase.kt index e9bf9a41ce2..7bdfcab0671 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/KotlinPsiChainBuilderTestCase.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/KotlinPsiChainBuilderTestCase.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin import com.intellij.debugger.streams.test.StreamChainBuilderTestCase diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/LibraryManager.kt b/idea/tests/com/intellij/debugger/streams/kotlin/LibraryManager.kt index 5a813705fdf..838a61ab099 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/LibraryManager.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/LibraryManager.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin import java.io.File diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/dsl/KotlinDslTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/dsl/KotlinDslTest.kt index bf544999226..690842e50b9 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/dsl/KotlinDslTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/dsl/KotlinDslTest.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin.dsl import com.intellij.debugger.streams.kotlin.trace.dsl.KotlinStatementFactory diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinEvaluationTestCase.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinEvaluationTestCase.kt index e7d80b73dcf..08d3155c768 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinEvaluationTestCase.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinEvaluationTestCase.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin.exec import com.intellij.debugger.impl.OutputChecker diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinOutputChecker.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinOutputChecker.kt index c9cec871dde..7c457043099 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinOutputChecker.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/KotlinOutputChecker.kt @@ -1,18 +1,4 @@ -/* - * Copyright 2010-2017 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/java/JavaStreamTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/java/JavaStreamTest.kt index 5d217836765..42d3219b0d1 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/java/JavaStreamTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/java/JavaStreamTest.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin.exec.java import com.intellij.debugger.streams.kotlin.exec.KotlinEvaluationTestCase diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/NegativeJavaStreamTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/NegativeJavaStreamTest.kt index a685de3100b..923334f5d19 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/NegativeJavaStreamTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/NegativeJavaStreamTest.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin.psi.java import com.intellij.debugger.streams.kotlin.KotlinPsiChainBuilderTestCase diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveJavaStreamTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveJavaStreamTest.kt index 5118a7b4e99..aaca119ce6d 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveJavaStreamTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveJavaStreamTest.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin.psi.java import com.intellij.debugger.streams.kotlin.KotlinPsiChainBuilderTestCase diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveStreamExTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveStreamExTest.kt index ac308cf92ff..a73f5282230 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveStreamExTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/PositiveStreamExTest.kt @@ -1,3 +1,5 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. + package com.intellij.debugger.streams.kotlin.psi.java import com.intellij.debugger.streams.kotlin.KotlinPsiChainBuilderTestCase