Skip to content

Commit 11275ae

Browse files
committed
Remove an unused method
1 parent a153f91 commit 11275ae

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

datastore/src/main/java/io/spine/server/storage/datastore/DsRecordStorage.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
import com.google.cloud.datastore.BaseEntity;
2424
import com.google.cloud.datastore.Entity;
2525
import com.google.cloud.datastore.Key;
26-
import com.google.common.annotations.VisibleForTesting;
2726
import com.google.common.base.Functions;
2827
import com.google.protobuf.Any;
2928
import com.google.protobuf.FieldMask;
@@ -244,19 +243,6 @@ protected DatastoreWrapper getDatastore() {
244243
return datastore;
245244
}
246245

247-
/**
248-
* Obtains the {@link TypeUrl} of the messages to save to this store.
249-
*
250-
* <p>Allows the customization of the storage behavior in descendants.
251-
*
252-
* @return the {@link TypeUrl} of the stored messages
253-
*/
254-
@VisibleForTesting
255-
// Otherwise this getter is not used
256-
TypeUrl getTypeUrl() {
257-
return typeUrl;
258-
}
259-
260246
protected Entity entityRecordToEntity(I id, EntityRecordWithColumns record) {
261247
EntityRecord entityRecord = record.getRecord();
262248
Key key = datastore.keyFor(kindFrom(entityRecord), ofEntityId(id));

0 commit comments

Comments
 (0)