Skip to content

Commit

Permalink
fixed checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Edison Zhang committed Dec 30, 2024
1 parent 85b4999 commit 921fc67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

package com.amplifyframework.datastore.storage.sqlite.migrations;


/**
* Interface that defines the contract of an in-place model migration.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ private LastSyncMetadata(String id, String modelClassName, Long lastSyncTime,
* @param lastSyncTime Last time it was synced
* @param <T> t type of Model.
* @return {@link LastSyncMetadata} for the model class
* @deprecated use the override with SyncExpression parameter instead
*/
@InternalApiWarning
@Deprecated
Expand Down Expand Up @@ -93,6 +94,7 @@ public static <T extends Model> LastSyncMetadata baseSyncedAt(@NonNull String mo
* @param lastSyncTime Last time it was synced
* @param <T> t type of Model.
* @return {@link LastSyncMetadata} for the model class
* @deprecated use the override with SyncExpression parameter instead
*/
@Deprecated
static <T extends Model> LastSyncMetadata deltaSyncedAt(@NonNull String modelClassName,
Expand Down Expand Up @@ -136,6 +138,7 @@ public static <T extends Model> LastSyncMetadata neverSynced(@NonNull String mod
* @param syncType The type of sync (FULL or DELTA).
* @param <T> Type of model
* @return {@link LastSyncMetadata}
* @deprecated use the override with SyncExpression parameter instead
*/
@SuppressWarnings("WeakerAccess")
@Deprecated
Expand Down

0 comments on commit 921fc67

Please sign in to comment.