Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
Implement missing interface member in mock ModelDB
Browse files Browse the repository at this point in the history
This fixes an analyzer warning

BUG=
R=kustermann@google.com

Review URL: https://codereview.chromium.org//2261453002 .
  • Loading branch information
whesse committed Aug 18, 2016
1 parent 49f362c commit c2ae6a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0+14

* Fix analyzer warning.

## 0.2.0+13

* Remove crypto dependency and upgrade dart dependency to >=1.13 since
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: gcloud
version: 0.2.0+13
version: 0.2.0+14
author: Dart Team <misc@dartlang.org>
description: Dart gcloud APIs
homepage: https://github.com/dart-lang/gcloud
Expand Down
1 change: 1 addition & 0 deletions test/db/properties_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,5 @@ class ModelDBMock implements ModelDB {
datastore.Entity toDatastoreEntity(Model model) => null;
String fieldNameToPropertyName(String kind, String fieldName) => null;
String kindName(Type type) => null;
Object toDatastoreValue(String kind, String fieldName, Object value) => null;
}

0 comments on commit c2ae6a2

Please sign in to comment.