Skip to content

Commit

Permalink
Removed initial materials list.
Browse files Browse the repository at this point in the history
  • Loading branch information
MauveCloud committed Oct 2, 2014
1 parent 02d33e2 commit 16f43ef
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions src/Ic2ExpReactorPlanner/Reactor.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ public class Reactor {

private double ventedHeat = 0.0;

public static final MaterialsList REACTOR_CHAMBER = new MaterialsList(8, "Iron Plate", 4, "Lead Plate");
public static final MaterialsList REACTOR = new MaterialsList(3, REACTOR_CHAMBER, 36, "Lead Plate", MaterialsList.ADVANCED_CIRCUIT, MaterialsList.GENERATOR);

public ReactorComponent getComponentAt(int row, int column) {
if (row >= 0 && row < grid.length && column >= 0 && column < grid[row].length) {
return grid[row][column];
Expand Down
3 changes: 0 additions & 3 deletions src/Ic2ExpReactorPlanner/ReactorPlannerFrame.form
Original file line number Diff line number Diff line change
Expand Up @@ -519,9 +519,6 @@
<Property name="editable" type="boolean" value="false"/>
<Property name="columns" type="int" value="20"/>
<Property name="rows" type="int" value="5"/>
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
<Connection code="Reactor.REACTOR.toString()" type="code"/>
</Property>
</Properties>
</Component>
</SubComponents>
Expand Down
1 change: 0 additions & 1 deletion src/Ic2ExpReactorPlanner/ReactorPlannerFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,6 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
materialsArea.setEditable(false);
materialsArea.setColumns(20);
materialsArea.setRows(5);
materialsArea.setText(Reactor.REACTOR.toString());
jScrollPane2.setViewportView(materialsArea);

jTabbedPane1.addTab("Materials", jScrollPane2);
Expand Down

0 comments on commit 16f43ef

Please sign in to comment.