~ubuntu-branches/ubuntu/vivid/electric/vivid

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/user/ErrorLogger.java

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2014-07-08 21:54:23 UTC
  • mfrom: (1.1.6) (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20140708215423-4zrgsca1e28tzcoc
Tags: 9.05+dfsg-1
* Imported Upstream version 9.05+dfsg.
* Add signing-key.pgp and check for valid upstream tarballs with uscan's
  pgpsigurlmangle feature.
* Move the package to Git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
695
695
        if (lineList != null)
696
696
        {
697
697
                for(int i=0; i<lineList.size(); i += 2)
698
 
                h.add(new ErrorHighLine(cell, lineList.get(i), lineList.get(i+1), true));
 
698
                {
 
699
                        if (i < lineList.size() - 1)
 
700
                                h.add(new ErrorHighLine(cell, lineList.get(i), lineList.get(i+1), true));
 
701
                        else
 
702
                                System.out.println("Out of range for lineList. Check this list with i=" + i + " size=" + lineList.size() 
 
703
                                                + " elements associated to message '" + message + "'.");
 
704
                }
699
705
        }
700
706
        if (isErrorMsg)
701
707
            logAnError(message, cell, sortKey, h);