summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/SourceCompleter.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/symtab/SourceCompleter.java')
-rw-r--r--sources/scalac/symtab/SourceCompleter.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/sources/scalac/symtab/SourceCompleter.java b/sources/scalac/symtab/SourceCompleter.java
index b315733922..9475e79ffe 100644
--- a/sources/scalac/symtab/SourceCompleter.java
+++ b/sources/scalac/symtab/SourceCompleter.java
@@ -32,24 +32,24 @@ public class SourceCompleter extends Type.LazyType {
/** complete class symbol c by loading the class
*/
public void complete(Symbol c) {
- if (completed) {
- c.setInfo(Type.ErrorType);
- } else if (filename != null) {
- try {
- String fname = filename;
- long msec = System.currentTimeMillis();
- Unit unit = new Unit(global, new SourceFile(filename), false);
- filename = null;
- global.PHASE.PARSER.apply(unit);
- global.PHASE.ANALYZER.lateEnter(global, unit, c);
- global.operation("added " + fname + " in " +
- (System.currentTimeMillis() - msec) + "ms");
- } catch (IOException e) {
- e.printStackTrace();
- global.error("i/o error while loading " + c);
- c.setInfo(Type.ErrorType);
- }
- completed = true;
- }
+ if (completed) {
+ c.setInfo(Type.ErrorType);
+ } else if (filename != null) {
+ try {
+ String fname = filename;
+ long msec = System.currentTimeMillis();
+ Unit unit = new Unit(global, new SourceFile(filename), false);
+ filename = null;
+ global.PHASE.PARSER.apply(unit);
+ global.PHASE.ANALYZER.lateEnter(global, unit, c);
+ global.operation("added " + fname + " in " +
+ (System.currentTimeMillis() - msec) + "ms");
+ } catch (IOException e) {
+ e.printStackTrace();
+ global.error("i/o error while loading " + c);
+ c.setInfo(Type.ErrorType);
+ }
+ completed = true;
+ }
}
}