summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/DefaultMapModel.scala
Commit message (Collapse)AuthorAgeFilesLines
* Lower-case spelling of @deprecated messagesSimon Ochsenreither2016-05-281-1/+1
|
* SI-7592 Deprecate s.c.m.DefaultMapModelSimon Ochsenreither2013-07-191-0/+1
| | | | | | “This class is used internally.” — No, it isn't. It isn't used anywhere else either and it doesn't add much benefit, considering that it lacks documentation and has no tests at all.
* Absolutized paths involving the scala package.Paul Phillips2013-05-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Confusing, now-it-happens now-it-doesn't mysteries lurk in the darkness. When scala packages are declared like this: package scala.collection.mutable Then paths relative to scala can easily be broken via the unlucky presence of an empty (or nonempty) directory. Example: // a.scala package scala.foo class Bar { new util.Random } % scalac ./a.scala % mkdir util % scalac ./a.scala ./a.scala:4: error: type Random is not a member of package util new util.Random ^ one error found There are two ways to play defense against this: - don't use relative paths; okay sometimes, less so others - don't "opt out" of the scala package This commit mostly pursues the latter, with occasional doses of the former. I created a scratch directory containing these empty directories: actors annotation ant api asm beans cmd collection compat concurrent control convert docutil dtd duration event factory forkjoin generic hashing immutable impl include internal io logging macros man1 matching math meta model mutable nsc parallel parsing partest persistent process pull ref reflect reify remote runtime scalap scheduler script swing sys text threadpool tools transform unchecked util xml I stopped when I could compile the main src directories even with all those empties on my classpath.
* Brings all copyrights (in comments) up-to-date, from 2011/12 to 2013Heather Miller2012-11-021-1/+1
|
* Updated copyright notices to 2011Antonio Cunei2011-01-201-1/+1
|
* Removed more than 3400 svn '$Id' keywords and r...Antonio Cunei2010-05-121-1/+0
| | | | | Removed more than 3400 svn '$Id' keywords and related junk.
* More docs. No review.Aleksandar Pokopec2010-04-101-3/+2
|
* Updated copyright notices to 2010Antonio Cunei2009-12-071-1/+1
|
* add @since annotationsstepancheg2009-09-261-0/+1
|
* Collections refactoring.Martin Odersky2009-09-251-1/+2
|
* fixed headers/comments/svn props, made some pro...michelou2009-09-151-2/+1
| | | | | | fixed headers/comments/svn props, made some progress with serializable classes
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-271-1/+2
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* changes to maps and setsMartin Odersky2009-05-121-1/+3
|
* separated mutable and immutable mapsMartin Odersky2009-05-121-4/+4
|
* massive new collections checkin.Martin Odersky2009-05-081-2/+0
|
* Updated (all) copyright notices to 2009Antonio Cunei2009-01-131-1/+1
|
* Removed Pair(...), Triple(...).Martin Odersky2007-02-211-1/+1
|
* changed tuple syntax to (...)Martin Odersky2007-02-131-1/+1
|
* Fxied bug 909;Martin Odersky2007-01-221-4/+1
| | | | | Updated collection library
* another change to collection librariesMartin Odersky2007-01-041-0/+2
|
* 1.Martin Odersky2007-01-031-23/+15
|
* removed leading/trailing tabs/blanks in collect...michelou2006-10-041-22/+22
| | | | | removed leading/trailing tabs/blanks in collection/mutable/*.scala
* undid import Predef._, after resolving dependen...Burak Emir2006-03-251-2/+0
| | | | | undid import Predef._, after resolving dependency in TopScope.
* undid consolidation in object XML, and added im...Burak Emir2006-03-251-0/+1
| | | | | | undid consolidation in object XML, and added import Predef._ to all files that needed it. strange.
* (no commit message)Martin Odersky2006-03-101-1/+1
|
* Use 'mixin class' instead of 'trait'mihaylov2006-03-031-4/+5
|
* Rearranged header and updated copyright messagemihaylov2006-03-021-2/+4
|
* Switching to the new build system and to the ne...Gilles Dubochet2005-12-191-0/+52
Switching to the new build system and to the new build system. This is a MAJOR commit, so be careful when updating.