Skip to content
Snippets Groups Projects
Commit c7553dff authored by Dominique Blouin's avatar Dominique Blouin
Browse files

Fixed indentation

parent 42ecbfd3
No related branches found
No related tags found
No related merge requests found
...@@ -36,14 +36,12 @@ ...@@ -36,14 +36,12 @@
* knowledge of the CeCILL license and that you accept its terms. * knowledge of the CeCILL license and that you accept its terms.
*/ */
package tmltranslator; package tmltranslator;
import myutil.Conversion; import myutil.Conversion;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List;
/** /**
* Class TMLChoice * Class TMLChoice
...@@ -52,7 +50,7 @@ import java.util.ArrayList; ...@@ -52,7 +50,7 @@ import java.util.ArrayList;
* @author Ludovic APVRILLE * @author Ludovic APVRILLE
*/ */
public class TMLChoice extends TMLActivityElement{ public class TMLChoice extends TMLActivityElement{
private ArrayList<String> guards; private List<String> guards;
public TMLChoice(String _name, Object _referenceObject) { public TMLChoice(String _name, Object _referenceObject) {
super(_name, _referenceObject); super(_name, _referenceObject);
...@@ -331,13 +329,11 @@ public class TMLChoice extends TMLActivityElement{ ...@@ -331,13 +329,11 @@ public class TMLChoice extends TMLActivityElement{
} }
} }
public String customExtraToXML() { public String customExtraToXML() {
String g = ""; String g = "";
for(String s: guards) { for(String s: guards) {
g += s + ";"; g += s + ";";
} }
return " guards=\"" + g + "\" "; return " guards=\"" + g + "\" ";
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment