diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Ambiguity.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Ambiguity.after.java index bb1dbf0f2d8e..060579295852 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Ambiguity.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Ambiguity.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class MyTest { static void m(Integer i) { assertTrue(true); } diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef.after.java index 4fc1afca7f8e..71fb9fb1b296 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class Foo { static void foo() { Ar a = p -> new String[p]; diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef2Dim.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef2Dim.after.java index 8f8986363ec5..65e0926e7685 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef2Dim.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRef2Dim.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class Foo { static void foo() { Ar a = p -> new String[p][]; diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRefUniqueParamName.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRefUniqueParamName.after.java index ab83b68a03bf..83b9384e1d25 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRefUniqueParamName.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayConstructorRefUniqueParamName.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class Foo { public void test() { Object i = null; diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayMethodRef.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayMethodRef.after.java index 36cc1b85fdb2..42e6ae3de425 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayMethodRef.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ArrayMethodRef.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class Foo { static void foo() { Cln j = ints -> ints.clone(); diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/CollapseToExpressionLambdaWhenCast.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/CollapseToExpressionLambdaWhenCast.after.java index a76f9a0d6ab4..6e9cfc0a4e5a 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/CollapseToExpressionLambdaWhenCast.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/CollapseToExpressionLambdaWhenCast.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ import java.util.Collection; import java.util.HashMap; import java.util.Map; diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference.after.java index 9c7e0593bad3..9b4e85fdacb1 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class MyTest { MyTest(X x) {} diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference1.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference1.after.java index 912c0332b652..d9c913bf0efc 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference1.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInference1.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class MyTest { interface I { void m(Integer s); diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInnerClass.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInnerClass.after.java index c047263fee78..7a64064d19df 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInnerClass.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsInnerClass.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ class MyTest { static class Inner { Inner(MyTest mt) {}; diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsStaticInnerClass.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsStaticInnerClass.after.java index e6ea03c49f31..f3743ce362ac 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsStaticInnerClass.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/NewRefsStaticInnerClass.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ class MyTest { static class Inner { Inner(MyTest outer) {}; diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/PreserveExpressionQualifier.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/PreserveExpressionQualifier.after.java index f6fdd313a650..407dbbfa2bbf 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/PreserveExpressionQualifier.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/PreserveExpressionQualifier.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ import java.util.function.Function; abstract class Result { diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Receiver.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Receiver.after.java index fb718d06694c..0152fb9b9e25 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Receiver.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/Receiver.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class MyTest { interface I { void m(MyTest receiver); diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/RedundantCast.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/RedundantCast.after.java index 57b7f923b83a..2ba900107138 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/RedundantCast.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/RedundantCast.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ import java.util.Comparator; class A { diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/StaticMethodRef.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/StaticMethodRef.after.java index 527cfb7cff19..fd17a35461ed 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/StaticMethodRef.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/StaticMethodRef.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class MyTest { interface I { void foo(int i); } diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/SuperRefs.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/SuperRefs.after.java index 12e40e553bad..ecb9e30ba62a 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/SuperRefs.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/SuperRefs.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ public class MyTest { interface I { diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ThisRefs.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ThisRefs.after.java index 1514a8e65021..d3f1001c23bc 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ThisRefs.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/methodRefs2lambda/ThisRefs.after.java @@ -1,18 +1,3 @@ -/* - * Copyright 2000-2016 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. - */ class MyTest { static interface SAM { void m(Integer i);