Add getScore() method to FolderNameInfo class.

getScore() is not used in launcher3 but exposed for testing purpose.

Change-Id: I22e674dabc3c24879c1c1b5881f9fc6005404998
This commit is contained in:
jayaprakashs 2020-04-16 22:08:35 -07:00
parent 8699bf5626
commit 12cf1e5440
1 changed files with 4 additions and 0 deletions

View File

@ -50,6 +50,10 @@ public final class FolderNameInfo implements Parcelable {
return mLabel;
}
public double getScore() {
return mScore;
}
/**
* Used to package this object into a {@link Parcel}.
*