Ignore:
Timestamp:
11/22/11 20:23:35 (13 years ago)
Author:
masberg
Message:

Use generics.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.ui/src/org/modelica/mdt/ui/console/MarkProblemsVisitor.java

    r491 r1123  
    188188     * @throws CoreException
    189189     */
    190     @SuppressWarnings("unchecked")
    191190    protected void setMarker(IFile in_file, String message, int lineNumber) throws CoreException
    192191    {
     
    195194        debug("Line:" + lineNumber);
    196195        debug("Message:" + message);       
    197         Map attributes = new HashMap();
     196        Map<String, Integer> attributes = new HashMap<String, Integer>();
    198197        message = message.trim();       
    199198        if (message.startsWith(":") || Character.isDigit(message.charAt(0)))
Note: See TracChangeset for help on using the changeset viewer.