blob: 4b470ccbec0a66405ddce2efd5ed56ae6d62595f [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package test;
public class NoSignatureChangeIncrementalJavacTestHelper {
private final NoSignatureChangeIncrementalJavacTestHelper2 mHelper2 =
new NoSignatureChangeIncrementalJavacTestHelper2();
public String foo() {
return "{{foo_return_value}}";
}
public String bar() {
return mHelper2.bar();
}
}