Skip to content

Commit 1357344

Browse files
committed
Updating formatting after reviewer sugggested changes.
1 parent adba84f commit 1357344

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

firebase-ml-modeldownloader/src/main/java/com/google/firebase/ml/modeldownloader/CustomModel.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ public File getFile() throws Exception {
137137
* The local model file. If null is returned, use the download Id to check the download status.
138138
*
139139
* @return the local file associated with the model. If the original file download is still in
140-
* progress, returns null. If file update is in progress, returns the last fully uploaded model.
140+
* progress, returns null. If file update is in progress, returns the last fully uploaded
141+
* model.
141142
*/
142143
@Nullable
143144
@VisibleForTesting

firebase-ml-modeldownloader/src/main/java/com/google/firebase/ml/modeldownloader/internal/ModelFileManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ public static ModelFileManager getInstance() {
6060
* directory specified does exist. If you need to ensure its existence, you should call
6161
* getDirImpl.
6262
*/
63-
@Nullable private File getModelDirUnsafe(@NonNull String modelName) {
63+
@Nullable
64+
private File getModelDirUnsafe(@NonNull String modelName) {
6465
String modelTypeSpecificRoot = CUSTOM_MODEL_ROOT_PATH;
6566
File root;
6667
if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {

0 commit comments

Comments
 (0)