From 9a97b93eced7b0fdf37459f6ed9ccc5f5fbdcea8 Mon Sep 17 00:00:00 2001 From: Tobe O Date: Sat, 17 Aug 2019 18:46:22 -0400 Subject: [PATCH] Move MapQueryValues to the proper file --- angel_orm/lib/src/map_query_values.dart | 9 +++++++++ angel_orm/lib/src/query_values.dart | 10 +--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/angel_orm/lib/src/map_query_values.dart b/angel_orm/lib/src/map_query_values.dart index e69de29b..398ba9bf 100644 --- a/angel_orm/lib/src/map_query_values.dart +++ b/angel_orm/lib/src/map_query_values.dart @@ -0,0 +1,9 @@ +import 'query_values.dart'; + +/// A [QueryValues] implementation that simply writes to a [Map]. +class MapQueryValues extends QueryValues { + final Map values = {}; + + @override + Map toMap() => values; +} diff --git a/angel_orm/lib/src/query_values.dart b/angel_orm/lib/src/query_values.dart index d576060b..566ad8e2 100644 --- a/angel_orm/lib/src/query_values.dart +++ b/angel_orm/lib/src/query_values.dart @@ -56,12 +56,4 @@ abstract class QueryValues { } return b.toString(); } -} - -/// A [QueryValues] implementation that simply writes to a [Map]. -class MapQueryValues extends QueryValues { - final Map values = {}; - - @override - Map toMap() => values; -} +} \ No newline at end of file