Skip to content

Commit

Permalink
修复小bug
Browse files Browse the repository at this point in the history
  • Loading branch information
joenahm committed Jun 8, 2018
1 parent 92cb0a8 commit bc2e37c
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 53 deletions.
106 changes: 56 additions & 50 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified out/artifacts/fileBlender/fileBlender.jar
Binary file not shown.
Binary file modified out/production/fileBlender/Controller.class
Binary file not shown.
Binary file modified out/production/fileBlender/Launcher.class
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ private String[] getBlocks(int type){
String splitter;
if( type == 1 ){
textArea = text1;
splitter = splitter1.getText()==null ? "\n" : splitter1.getText();
splitter = splitter1.getText().equals("") ? "\n" : splitter1.getText();
}else{
textArea = text2;
splitter = splitter2.getText()==null ? "\n" : splitter2.getText();
splitter = splitter2.getText().equals("") ? "\n" : splitter2.getText();
}

String[] temp;
Expand Down
2 changes: 1 addition & 1 deletion src/Launcher.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
public class Launcher {
public static void main(String[] args){
Controller fileBlender = new Controller();
fileBlender.start("文件混合器 v0.2");
fileBlender.start("文件混合器 v0.2.1");
}
}

0 comments on commit bc2e37c

Please sign in to comment.