Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@20953 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Jun 4, 2014
1 parent df4a8e1 commit 84f2f21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/Script/Figaro.mo
Expand Up @@ -36,7 +36,7 @@ algorithm
then fail();
end if;
System.writeFile(bdfFile, figaro);

// Get XML defining the database.
database := System.readFile(inDatabaseFile);
database := System.trimWhitespace(database);
Expand Down Expand Up @@ -537,8 +537,8 @@ protected function makeXml "Makes instructions for the Figaro processor."
protected
String xml;
algorithm
xml := "<REQUESTS>\n ";
xml := xml +& "<LOAD_BDC_FI>" +& inDatabase +& "\n </LOAD_BDC_FI>";
xml := "<REQUESTS>\n ";
xml := xml +& "<LOAD_BDC_FI>" +& inDatabase +& "\n </LOAD_BDC_FI>";
xml := xml +& "\n\n<LOAD_BDF_FI>\n <FILE>";
xml := xml +& inBdfFile;
xml := xml +& "</FILE>\n</LOAD_BDF_FI>\n";
Expand Down

0 comments on commit 84f2f21

Please sign in to comment.