Skip to content

Commit

Permalink
rename the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Mar 27, 2017
1 parent 2213432 commit 8010b70
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/src/protobuf/field_error.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ String _getFieldError(int fieldType, var value) {
case PbFieldType._SFIXED64_BIT:
// We always use the full range of the same Dart type.
// It's up to the caller to treat the Int64 as signed or unsigned.
// See: https://github.com/dart-lang/dart-protobuf/issues/44
// See: https://github.com/dart-lang/protobuf/issues/44
if (value is! Int64) return 'not Int64';
return null;

Expand Down Expand Up @@ -104,7 +104,7 @@ CheckFunc getCheckFunction(int fieldType) {
case PbFieldType._FIXED64_BIT:
// We always use the full range of the same Dart type.
// It's up to the caller to treat the Int64 as signed or unsigned.
// See: https://github.com/dart-lang/dart-protobuf/issues/44
// See: https://github.com/dart-lang/protobuf/issues/44
return _checkAnyInt64;

case PbFieldType._ENUM_BIT:
Expand Down
4 changes: 2 additions & 2 deletions lib/src/protobuf/field_set.dart
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ class _FieldSet {
/// recursively merged.
void _mergeFromMessage(_FieldSet other) {

// TODO(https://github.com/dart-lang/dart-protobuf/issues/60): Recognize
// TODO(https://github.com/dart-lang/protobuf/issues/60): Recognize
// when [this] and [other] are the same protobuf (e.g. from cloning). In
// this case, we can merge the non-extension fields without field lookups or
// validation checks.
Expand Down Expand Up @@ -556,6 +556,6 @@ class _FieldSet {
fi._appendInvalidFields(problems, value, prefix);
}
// TODO(skybrian): search extensions as well
// https://github.com/dart-lang/dart-protobuf/issues/46
// https://github.com/dart-lang/protobuf/issues/46
}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: protobuf
version: 0.5.3+1
author: Dart Team <[email protected]>
description: Runtime library for protobuf support.
homepage: https://github.com/dart-lang/dart-protobuf
homepage: https://github.com/dart-lang/protobuf
environment:
sdk: '>=1.13.0 <2.0.0'
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion test/list_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ void main() {

// Adding -1 should work because we are storing the bits as-is.
// (It will be interpreted as a positive number.)
// See: https://github.com/dart-lang/dart-protobuf/issues/44
// See: https://github.com/dart-lang/protobuf/issues/44
expect(() {
list.add(new Int64(-1));
}, returnsNormally, reason: 'could not add Int64(-1) to a PbList');
Expand Down

0 comments on commit 8010b70

Please sign in to comment.