Ignore:
Timestamp:
09/12/08 11:53:22 (16 years ago)
Author:
ra33
Message:

Adding networking stuff for peer to peer sharing of frames

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/actions/Actions.java

    r296 r298  
    108108                                        // This doesnt apply when running directly from the jar
    109109                                        // because the test classes are not compiled into the jar.
    110                                         if (!url.toString().toLowerCase().contains("test")) {
    111                                                 resource = url;
    112                                                 break;
    113                                         }
     110                                        // TODO change this so it is only done when running from
     111                                        // Eclipse... if it causes problems again!!
     112                                        // if (!url.toString().toLowerCase().contains("/tests/")) {
     113                                        resource = url;
     114                                        // break;
     115                                        // }
    114116                                }
    115117                        } catch (Exception e) {
     
    388390                command = command.substring(mname.length()).trim();
    389391                // If no params are provided get them from a text item on the cursor
    390                 if (command.length() == 0 && launcher instanceof Text && launcher.isFloating()) {
     392                if (command.length() == 0 && launcher instanceof Text
     393                                && launcher.isFloating()) {
    391394                        command = launcher.getText();
    392395                }
Note: See TracChangeset for help on using the changeset viewer.