【发布时间】:2020-06-30 18:53:29
【问题描述】:
我重新打开Android Studio,发现我的main.dart文件中的代码已经被替换成了这个
/*
* Copyright 2010 the original author or authors.
*
* 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.
*/
package org.gradle.api.specs;
import com.google.common.collect.Iterators;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
/**
* A {@link org.gradle.api.specs.Spec} which aggregates a sequence of other {@code Spec} instances.
*
* @param <T> The target type for this Spec
*/
public abstract class CompositeSpec<T> implements Spec<T> {
private static final Spec<?>[] EMPTY = new Spec[0];
private final Spec<
我尝试过使缓存无效并重新启动,但没有奏效。发生这种情况的任何原因或可能的解决方法?
【问题讨论】: