Skip to content

Commit

Permalink
Auto Removal of Redundant Package Prefix
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 286277367
  • Loading branch information
Googler authored and copybara-github committed Dec 18, 2019
1 parent 243bb6b commit 6732d9b
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@
@AutoValue
public abstract class FieldKey extends ClassMemberKey {

/**
* The factory method for {@link com.google.devtools.build.android.desugar.langmodel.FieldKey}.
*/
public static com.google.devtools.build.android.desugar.langmodel.FieldKey create(
String ownerClass, String name, String descriptor) {
/** The factory method for {@link FieldKey}. */
public static FieldKey create(String ownerClass, String name, String descriptor) {
return new AutoValue_FieldKey(ownerClass, name, descriptor);
}

Expand All @@ -36,10 +33,7 @@ public static com.google.devtools.build.android.desugar.langmodel.FieldKey creat
* codes.
*/
public final <R, P> R accept(
MemberUseKind fieldUseKind,
FieldInstrVisitor<R, ? super com.google.devtools.build.android.desugar.langmodel.FieldKey, P>
visitor,
P param) {
MemberUseKind fieldUseKind, FieldInstrVisitor<R, ? super FieldKey, P> visitor, P param) {
switch (fieldUseKind) {
case GETSTATIC:
return visitor.visitGetStatic(this, param);
Expand Down

0 comments on commit 6732d9b

Please sign in to comment.