fix VcsRootConfiguration visibility

GitOrigin-RevId: eaf2a99303f7a22e75b7e1fc6cfa71f7c2d7c20b
This commit is contained in:
Vladimir Krivosheev
2025-02-17 18:30:57 +01:00
committed by intellij-monorepo-bot
parent 4d651ef831
commit fff72caf11

View File

@@ -1,33 +1,17 @@
/*
* Copyright 2000-2013 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-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.openapi.vcs.roots;
import org.jetbrains.annotations.NotNull;
import java.util.*;
class VcsRootConfiguration {
public final class VcsRootConfiguration {
@NotNull private Collection<String> myVcsRoots;
@NotNull private Collection<String> myContentRoots;
@NotNull private Collection<String> myMappings;
@NotNull private Collection<String> myUnregErrors;
@NotNull private Collection<String> myExtraErrors;
VcsRootConfiguration() {
myVcsRoots = Collections.emptyList();
myMappings = Collections.emptyList();