blob: fa8fdceac3ccc1bb03093c7175232ee659290b9a [file] [log] [blame]
// Copyright (c) 2017, 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.bridgeremoval.bridgestokeep;
import com.android.tools.r8.bridgeremoval.bridgestokeep.ObservableList.Observer;
public interface ObservableList<O extends Observer> {
interface Observer {
}
void registerObserver(O observer);
}