Skip to content

Commit 0123c09

Browse files
committed
get ready for v0.1.2
1 parent 8aec7e7 commit 0123c09

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/tech/polybit/coffeeide/ProjectEditor.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,6 @@ private void openFile(Object[] fileArr) throws Exception {
525525
String[] strFile = new String[fileArr.length - 1];
526526
for (int i = 0; i < strFile.length; i++) strFile[i] = fileArr[i + 1].toString();
527527
String filedir = Arrays.stream(strFile).collect(Collectors.joining("\\"));
528-
System.out.println("s" + filedir);
529528
File file = new File(filepathStr + "\\" + filedir);
530529
if (!file.isDirectory()) {
531530
createNewTab(file, filedir);
@@ -535,7 +534,6 @@ private void openFile(Object[] fileArr) throws Exception {
535534
// Creates a new tab for a file
536535
private void createNewTab(File file, String filedir) throws Exception {
537536
for (TabComponent tab : tabs) {
538-
System.out.println("d" + tab.getFilePackage() + tab.getFileName());
539537
if (file.getCanonicalPath().contains(tab.getFilePackage() + tab.getFileName()))
540538
return;
541539
}

0 commit comments

Comments
 (0)