File tree Expand file tree Collapse file tree
src/tech/polybit/coffeeide Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments