summaryrefslogtreecommitdiff
path: root/sources/scalac/Unit.java
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-06-12 06:36:22 +0000
committerpaltherr <paltherr@epfl.ch>2003-06-12 06:36:22 +0000
commit329c70cae6c2450244a57be3ce86bd04a9965c3b (patch)
tree1089ef0439f3561cbc9405ef6adea1a2bbe4a955 /sources/scalac/Unit.java
parente06aeaebbd4a8e8017cee946e406fb7fb692cedd (diff)
downloadscala-329c70cae6c2450244a57be3ce86bd04a9965c3b.tar.gz
scala-329c70cae6c2450244a57be3ce86bd04a9965c3b.tar.bz2
scala-329c70cae6c2450244a57be3ce86bd04a9965c3b.zip
- Removed support for notes
Diffstat (limited to 'sources/scalac/Unit.java')
-rw-r--r--sources/scalac/Unit.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/sources/scalac/Unit.java b/sources/scalac/Unit.java
index 2d78439bc8..5f215b80ec 100644
--- a/sources/scalac/Unit.java
+++ b/sources/scalac/Unit.java
@@ -107,19 +107,6 @@ public class Unit {
global.reporter.warning(source.getMessage(pos, message), hidden);
}
- /** issue a note in this compilation unit
- */
- public void note(String message) {
- note(Position.NOPOS, message);
- }
-
- /** issue a note in this compilation unit at a specific location
- */
- public void note(int pos, String message) {
- global.reporter.note(source.getMessage(pos, message));
- notes++;
- }
-
/** return a string representation
*/
public String toString() {