get rid of Lists.newArrayList

GitOrigin-RevId: d785fe6fab133812585561c391d7d3556d5792f7
This commit is contained in:
Vladimir Krivosheev
2020-04-16 10:01:21 +02:00
committed by intellij-monorepo-bot
parent 2f6cf99ab5
commit 444b7d3d40
75 changed files with 225 additions and 447 deletions

View File

@@ -1,23 +1,9 @@
/*
* Copyright 2000-2014 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-2020 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.jetbrains.rest.run.docutils;
import com.google.common.collect.Lists;
import com.intellij.ui.CollectionComboBoxModel;
import java.util.ArrayList;
import java.util.List;
/**
@@ -29,7 +15,7 @@ public class DocutilsTasksModel extends CollectionComboBoxModel {
}
private static List<String> getTasks() {
List<String> result = Lists.newArrayList();
List<String> result = new ArrayList<>();
result.add("rst2html");
result.add("rst2latex");
result.add("rst2odt");

View File

@@ -1,30 +1,17 @@
/*
* Copyright 2000-2014 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-2020 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.jetbrains.rest.run.sphinx;
import com.google.common.collect.Lists;
import com.intellij.ui.CollectionComboBoxModel;
import java.util.ArrayList;
import java.util.List;
/**
* User : catherine
*/
public class SphinxTasksModel extends CollectionComboBoxModel<String> {
private static final List<String> targets = Lists.newArrayList();
private static final List<String> targets = new ArrayList<>();
static {
targets.add("changes");
targets.add("coverage");

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2019 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.
// Copyright 2000-2020 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.jetbrains.rest.sphinx;
import com.google.common.collect.Lists;
@@ -32,6 +32,7 @@ import org.jetbrains.annotations.Nullable;
import javax.swing.*;
import java.awt.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
@@ -138,7 +139,7 @@ public class SphinxBaseCommand {
cmd.setExePath(executablePath);
}
else {
cmd = PythonHelper.LOAD_ENTRY_POINT.newCommandLine(sdkHomePath, Lists.newArrayList());
cmd = PythonHelper.LOAD_ENTRY_POINT.newCommandLine(sdkHomePath, new ArrayList<String>());
}
}