Skip to content

Commit 30779be

Browse files
author
NilsFo
committed
Updated gitignore so compiled output will be available via git
1 parent 9ce29ff commit 30779be

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
/.idea/libraries/*
99
.idea/libraries/*
1010
/.idea/*
11-
.idea/*
12-
/out/*
1311

1412
ExperimentExporter.iml
1513
db_credentials.xml
@@ -79,7 +77,7 @@ cmake-build-release/
7977
## Plugin-specific files:
8078

8179
# IntelliJ
82-
out/
80+
out/production
8381

8482
# mpeltonen/sbt-idea plugin
8583
.idea_modules/
Binary file not shown.

src/META-INF/MANIFEST.MF

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
Main-Class: de.rub.bph.CellomicsPuzzleHelper
3+

src/de/rub/bph/ui/PuzzleHelperGUI.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ private void exportFile() throws IOException {
217217
map.put("pfliprow", String.valueOf(flipRowCB.isSelected()));
218218
map.put("pflipresult", String.valueOf(flipFinalImageCB.isSelected()));
219219
map.put("version", CellomicsPuzzleHelper.VERSION);
220+
//TODO extract as constant to help instruction import
220221

221222
FileOutputStream fout = new FileOutputStream(f);
222223
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fout));

0 commit comments

Comments
 (0)