Skip to content
Snippets Groups Projects
Commit de161cad authored by René Schöne's avatar René Schöne
Browse files

Fixed small printing error.

parent 3084a267
No related branches found
No related tags found
No related merge requests found
......@@ -335,7 +335,7 @@ aspect Printing {
eq Property.print(MquatWriteSettings settings, int indentationLevel) {
MquatString result = new MquatString(settings, indentationLevel);
result.append(" property ").append(getName().print(settings, indentationLevel)).append(" [");
result.append("property ").append(getName().print(settings, indentationLevel)).append(" [");
result.append(getUnit()).append("]").lb();
return result;
......
......@@ -26,7 +26,7 @@ import java.util.Scanner;
@SuppressWarnings("unused")
public class Main {
public static final ScenarioDescription SCENARIO_DESCRIPTION = new ScenarioDescription(2, 2, 0, 0, 0, 3, 2, 16, 2, 2, 0);
public static final ScenarioDescription SCENARIO_DESCRIPTION = new ScenarioDescription(2, 2, 0, 0, 0, 2, 2, 1.5, 2, 2, 0);
private static File getAbsoluteFileForLoading(String fileName) throws FileNotFoundException {
URL expUrl = Main.class.getClassLoader().getResource(fileName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment