Ignore:
Timestamp:
02/10/06 16:16:56 (19 years ago)
Author:
remar
Message:
  • error messages now contain both starting and ending position of errors, this is used when setting problem markers
  • getCrefInfo return value changed from file:line:column to file:writable:line:column
  • changed tests to reflect changes to error message handling
  • updated documentation
File:
1 edited

Legend:

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

    r297 r307  
    653653
    654654        /* For some reason, the list returned doesn't contain curly braces. */
     655        retval = retval.trim();
    655656        retval = "{" + retval + "}";
    656657
     
    660661        try
    661662        {
    662             line = Integer.parseInt(tokens.elementAt(1).toString());
     663            line = Integer.parseInt(tokens.elementAt(2).toString());
    663664        }
    664665        catch (NumberFormatException e)
Note: See TracChangeset for help on using the changeset viewer.