Commit d7bd41a9 authored by Daniel Honsel's avatar Daniel Honsel
Browse files

fixed typo

parent 13389db8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ public class TTCN3ResourceProvider {
		} catch (IOException e) {
			e.printStackTrace();
		}
		TTCN3StatisticsProvider.getInstance().addParedLines(lines);
		TTCN3StatisticsProvider.getInstance().addParsedLines(lines);

		System.out.println("Parsing file: " + f.getPath() + " (LOC: " + lines
				+ ") ...");
+1 −1
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ public class TTCN3StatisticsProvider {
				+ "\" cannot be resolved!", "1.18, " + MiscTools.getMethodName());
	}

	public void addParedLines(int lines) {
	public void addParsedLines(int lines) {
		parsedLines += lines;
	}