From 4b2d79b21cf4a6dc46fd2c05539fc2cb593788f2 Mon Sep 17 00:00:00 2001 From: michelou Date: Tue, 11 Oct 2005 17:42:53 +0000 Subject: - updated copyright date. --- sources/scalac/transformer/AddInterfacesPhase.java | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'sources/scalac') diff --git a/sources/scalac/transformer/AddInterfacesPhase.java b/sources/scalac/transformer/AddInterfacesPhase.java index 60c8ef441d..026ac5feda 100644 --- a/sources/scalac/transformer/AddInterfacesPhase.java +++ b/sources/scalac/transformer/AddInterfacesPhase.java @@ -1,6 +1,6 @@ /* ____ ____ ____ ____ ______ *\ ** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala ** -** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL ** +** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002-2005, LAMP/EPFL ** ** /_____/\____/\___/\____/____/ ** \* */ @@ -11,11 +11,13 @@ package scalac.transformer; +import java.util.HashMap; +import java.util.Map; + import scalac.*; import scalac.symtab.*; -import scalac.util.Name; -import java.util.*; import scalac.util.Debug; +import scalac.util.Name; public class AddInterfacesPhase extends Phase { @@ -146,8 +148,11 @@ public class AddInterfacesPhase extends Phase { protected final HashMap/**/ classToBody = new HashMap(); /** Return the class symbol corresponding to the given interface - * symbol. If the class does not need an interface, return the - * given symbol. + * symbol. If the class does not need an interface, return the + * given symbol. + * + * @param ifaceSym + * @return */ protected Symbol getClassSymbol(Symbol ifaceSym) { assert ifaceSym.isClass(): Debug.show(ifaceSym); -- cgit v1.2.3