blob: 2ecff49afdcbac6f6f2fd0e65f4034c885ff54ac [file] [log] [blame]
// Copyright (c) 2018, 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.desugaring.interfacemethods.default1;
public class Derived1 implements DerivedComparator1<String> {
@Override
public int compare(String a, String b) {
return a.compareTo(b);
}
}