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

Commit

Permalink
#8. Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matei-tm committed Mar 21, 2019
1 parent fed6fe6 commit 48782e3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion example/lib/models/account.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class UserAccount implements DbAccountEntity {
@override
int get id => _id;

int get FutureData => _futureData;
int get futureData => _futureData;

String get description => _description;

Expand Down
6 changes: 3 additions & 3 deletions example/lib/models/account_related.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ class HealthEntryAccountRelated implements DbAccountRelatedEntity {
int _futureData;

@DataColumn("my_account_id_column", ColumnMetadata.NotNull)
int _account_id;
int _accountId;

@override
int get id => _id;

int get FutureData => _futureData;
int get futureData => _futureData;

String get description => _description;

Expand All @@ -31,7 +31,7 @@ class HealthEntryAccountRelated implements DbAccountRelatedEntity {
}

@override
int get accountId => _account_id;
int get accountId => _accountId;

@override
DbEntity getDbEntityFromMap(Map<String, dynamic> map) {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/models/independent.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class HealthEntry implements DbEntity {
@override
int get id => _id;

int get FutureData => _futureData;
int get futureData => _futureData;

String get description => _description;

Expand Down
2 changes: 1 addition & 1 deletion src/test/src/model/account.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class UserAccount implements DbAccountEntity {
@override
int get id => _id;

int get FutureData => _futureData;
int get futureData => _futureData;

String get description => _description;

Expand Down
6 changes: 3 additions & 3 deletions src/test/src/model/account_related.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ class HealthEntryAccountRelated implements DbAccountRelatedEntity {
int _futureData;

@DataColumn("my_account_id_column", ColumnMetadata.NotNull)
int _account_id;
int _accountId;

@override
int get id => _id;

int get FutureData => _futureData;
int get futureData => _futureData;

String get description => _description;

Expand All @@ -33,7 +33,7 @@ class HealthEntryAccountRelated implements DbAccountRelatedEntity {
}

@override
int get accountId => _account_id;
int get accountId => _accountId;

@override
DbEntity getDbEntityFromMap(Map<String, dynamic> map) {
Expand Down
2 changes: 1 addition & 1 deletion src/test/src/model/independent.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class HealthEntry implements DbEntity {
@override
int get id => _id;

int get FutureData => _futureData;
int get futureData => _futureData;

String get description => _description;

Expand Down

0 comments on commit 48782e3

Please sign in to comment.