Changeset 1682


Ignore:
Timestamp:
01/09/13 01:13:36 (12 years ago)
Author:
masberg
Message:

Trivial whitespace tweaks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.omc/src/org/modelica/mdt/omc/OMCProxy.java

    r1681 r1682  
    837837        }
    838838
    839 
    840839        /*
    841840         * The getCrefInfo reply has the following format:
     
    889888    public boolean isPackage(String className) throws ConnectException {
    890889        ICompilerResult res = sendExpression("isPackage(" + className + ")", true);
    891 
    892890        String retval = res.getFirstResult();
     891
    893892        return retval.contains("true");
    894893    }
     
    953952    public IClassInfo getClassInfo(String className)
    954953            throws ConnectException, UnexpectedReplyException {
    955         ICompilerResult res = sendExpression("getClassInformation(" + className +")", true);
     954        ICompilerResult res = sendExpression("getClassInformation(" + className + ")", true);
    956955        String retval = res.getFirstResult();
    957956
Note: See TracChangeset for help on using the changeset viewer.