Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: pkg/analysis_server/lib/src/services/index/store/codec.dart

Issue 1087483006: Rename two more classes to prepare for the public API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/services/index/store/codec.dart
diff --git a/pkg/analysis_server/lib/src/services/index/store/codec.dart b/pkg/analysis_server/lib/src/services/index/store/codec.dart
index f9190f084188f040fd0fb5e8af4c192337b2463b..0c2f81624192ea4aff8c95e0b3b8551d29cc0097 100644
--- a/pkg/analysis_server/lib/src/services/index/store/codec.dart
+++ b/pkg/analysis_server/lib/src/services/index/store/codec.dart
@@ -181,12 +181,12 @@ class RelationshipCodec {
RelationshipCodec(this._stringCodec);
- Relationship decode(int idIndex) {
+ RelationshipImpl decode(int idIndex) {
String id = _stringCodec.decode(idIndex);
- return Relationship.getRelationship(id);
+ return RelationshipImpl.getRelationship(id);
}
- int encode(Relationship relationship) {
+ int encode(RelationshipImpl relationship) {
String id = relationship.identifier;
return _stringCodec.encode(id);
}

Powered by Google App Engine
This is Rietveld 408576698