Skip to content

Commit

Permalink
Merge pull request #271 from itesla/checkstyle
Browse files Browse the repository at this point in the history
Checkstyle_on_tab_brace_space
  • Loading branch information
geofjamg committed Sep 13, 2017
2 parents 82f4d4e + a0be3db commit 7964cf5
Show file tree
Hide file tree
Showing 514 changed files with 37,353 additions and 37,608 deletions.
38 changes: 19 additions & 19 deletions EU2Mod_MB/src/main/java/itesla/converter/Block.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
* @author Raul Viruez <viruezr@aia.es>
*/
public class Block {
public String[] param = new String[8];
public String[] entries = new String[5];
public String output;
public Integer GraphicalNumber;
public Integer idEu;
public Integer count;
public List<Boolean> UsedInputPins = new ArrayList<Boolean>();
public Block (String[] param, String[] entries, String output, Integer GraphicalNumber, Integer idEu, Integer cont, Integer nInputPins){
this.param = param;
this.entries = entries;
this.output = output;
this.GraphicalNumber = GraphicalNumber;
this.idEu = idEu;
this.count = cont;
for (int i=0; i<nInputPins; i++){
UsedInputPins.add(false);
}
}
public String[] param = new String[8];
public String[] entries = new String[5];
public String output;
public Integer GraphicalNumber;
public Integer idEu;
public Integer count;
public List<Boolean> UsedInputPins = new ArrayList<Boolean>();

public Block (String[] param, String[] entries, String output, Integer GraphicalNumber, Integer idEu, Integer cont, Integer nInputPins) {
this.param = param;
this.entries = entries;
this.output = output;
this.GraphicalNumber = GraphicalNumber;
this.idEu = idEu;
this.count = cont;
for (int i = 0; i < nInputPins; i++) {
UsedInputPins.add(false);
}
}
}

0 comments on commit 7964cf5

Please sign in to comment.