summaryrefslogtreecommitdiff
path: root/src/library/scala/remote.scala
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate scala.remoteLukas Rytz2016-07-201-0/+1
|
* Brings all copyrights (in comments) up-to-date, from 2011/12 to 2013Heather Miller2012-11-021-1/+1
|
* Eliminate breaking relative names in source.Paul Phillips2012-09-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These things are killing me. Constructions like package scala.foo.bar.baz import foo.Other DO NOT WORK in general. Such files are not really in the "scala" package, because it is not declared package scala package foo.bar.baz And there is a second problem: using a relative path name means compilation will fail in the presence of a directory of the same name, e.g. % mkdir reflect % scalac src/reflect/scala/reflect/internal/util/Position.scala src/reflect/scala/reflect/internal/util/Position.scala:9: error: object ClassTag is not a member of package reflect import reflect.ClassTag ^ src/reflect/scala/reflect/internal/util/Position.scala:10: error: object base is not a member of package reflect import reflect.base.Attachments ^ As a rule, do not use relative package paths unless you have explicitly imported the path to which you think you are relative. Better yet, don't use them at all. Unfortunately they mostly work because scala variously thinks everything scala.* is in the scala package and/or because you usually aren't bootstrapping and it falls through to an existing version of the class already on the classpath. Making the paths explicit is not a complete solution - in particular, we remain enormously vulnerable to any directory or package called "scala" which isn't ours - but it greatly limts the severity of the problem.
* 2nd round of clean ups (see r25285)michelou2011-07-151-2/+13
|
* Updated copyright notices to 2011Antonio Cunei2011-01-201-1/+1
|
* Moved ClassfileAnnotation/StaticAnnotation/Anno...Paul Phillips2010-12-061-1/+1
| | | | | | | Moved ClassfileAnnotation/StaticAnnotation/Annotation/TypeConstraint into scala.annotation and enabled the deprecated type aliases in scala.* to point there. Also enclosed is a new starr to bootstrap. No review.
* 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.
* Updated copyright notices to 2010Antonio Cunei2009-12-071-1/+1
|
* minor change (Scala comments)michelou2009-07-071-3/+0
|
* removed deprecated warning, updated svn props, ...michelou2009-03-101-1/+1
| | | | | removed deprecated warning, updated svn props, cleaned up code
* Updated (all) copyright notices to 2009Antonio Cunei2009-01-131-1/+1
|
* Fixing #1189.Lukas Rytz2008-08-181-1/+1
|
* Reverting for now..Lukas Rytz2008-08-181-1/+1
|
* Fixed #1189Lukas Rytz2008-08-181-1/+1
|
* renamed attributes to annotations; added @syntax.Martin Odersky2007-02-091-2/+2
|
* added comment on MAX_<value_type> in generated ...michelou2006-11-281-3/+8
| | | | | added comment on MAX_<value_type> in generated API documentation
* Rearranged header and updated copyright messagemihaylov2006-03-021-3/+6
|
* Cleaned-up all keyword-substitution, executable...Gilles Dubochet2006-01-131-1/+1
| | | | | | Cleaned-up all keyword-substitution, executable flag and end-of-line properties of files in 'scala/trunk'
* Switching to the new build system and to the ne...Gilles Dubochet2005-12-191-0/+12
Switching to the new build system and to the new build system. This is a MAJOR commit, so be careful when updating.