Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UnmodifiableMapView class must implement toString() #16274

Closed
DartBot opened this issue Jan 24, 2014 · 2 comments
Closed

UnmodifiableMapView class must implement toString() #16274

DartBot opened this issue Jan 24, 2014 · 2 comments
Labels
area-pkg Used for miscellaneous pkg/ packages not associated with specific area- teams. library-collection

Comments

@DartBot
Copy link

DartBot commented Jan 24, 2014

This issue was originally filed by andrew.m...@gmail.com


UnmodifiableMapView must implement toString()

+++
class UnmodifiableMapView<K, V> extends DelegatingMap<K, V> {
  String toString() => super.toString();
}
+++

And class 'DelegatingMap' also must implements 'toString()' based on '_baseMap'.

+++
class DelegatingMap<K, V> implements Map<K, V> {
  Map<K, V> _base;

  String toString() => _base.toString();
}
+++

@lrhn
Copy link
Member

lrhn commented Jan 24, 2014

Added Area-pkg, Library-Collection, Triaged labels.

@lrhn
Copy link
Member

lrhn commented Jan 28, 2014

Added Fixed label.

@DartBot DartBot added Type-Defect area-pkg Used for miscellaneous pkg/ packages not associated with specific area- teams. library-collection labels Jan 28, 2014
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-pkg Used for miscellaneous pkg/ packages not associated with specific area- teams. library-collection
Projects
None yet
Development

No branches or pull requests

3 participants