Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit c2ae6a2

Browse files
committed
Implement missing interface member in mock ModelDB
This fixes an analyzer warning BUG= [email protected] Review URL: https://codereview.chromium.org//2261453002 .
1 parent 49f362c commit c2ae6a2

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0+14
2+
3+
* Fix analyzer warning.
4+
15
## 0.2.0+13
26

37
* Remove crypto dependency and upgrade dart dependency to >=1.13 since

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: gcloud
2-
version: 0.2.0+13
2+
version: 0.2.0+14
33
author: Dart Team <[email protected]>
44
description: Dart gcloud APIs
55
homepage: https://github.com/dart-lang/gcloud

test/db/properties_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,5 @@ class ModelDBMock implements ModelDB {
238238
datastore.Entity toDatastoreEntity(Model model) => null;
239239
String fieldNameToPropertyName(String kind, String fieldName) => null;
240240
String kindName(Type type) => null;
241+
Object toDatastoreValue(String kind, String fieldName, Object value) => null;
241242
}

0 commit comments

Comments
 (0)