blob: df264e4d3c2cd9cd5d599730ca7370514a30a5be [file] [log] [blame]
// Copyright (c) 2022, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.optimize.interfaces.collection;
import com.android.tools.r8.graph.DexClass;
import com.android.tools.r8.graph.GraphLens;
import com.android.tools.r8.graph.PrunedItems;
/** Default oracle for that answers "maybe open" for each interface. */
public class DefaultOpenClosedInterfacesCollection extends OpenClosedInterfacesCollection {
private static final DefaultOpenClosedInterfacesCollection INSTANCE =
new DefaultOpenClosedInterfacesCollection();
private DefaultOpenClosedInterfacesCollection() {}
static DefaultOpenClosedInterfacesCollection getInstance() {
return INSTANCE;
}
@Override
public boolean isDefinitelyClosed(DexClass clazz) {
return false;
}
@Override
public OpenClosedInterfacesCollection rewrittenWithLens(GraphLens graphLens) {
return this;
}
@Override
public OpenClosedInterfacesCollection withoutPrunedItems(PrunedItems prunedItems) {
return this;
}
}