diff graal/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/DefaultDebugManager.java @ 14906:f3a5036cc13c

javadoc fixes javadoc has become stricter in jdk8
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 31 Mar 2014 20:51:09 +0200
parents 3f27e57439ed
children 64dcb92ee75a
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/DefaultDebugManager.java	Mon Mar 31 19:07:49 2014 +0200
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/DefaultDebugManager.java	Mon Mar 31 20:51:09 2014 +0200
@@ -46,12 +46,12 @@
     private Source beingLoaded = null;
 
     /**
-     * Map: SourceSection ==> probe chain associated with that source section in an AST.
+     * Map: SourceSection ==&gt; probe chain associated with that source section in an AST.
      */
     private final Map<SourceSection, ProbeChain> srcToProbeChain = new HashMap<>();
 
     /**
-     * Map: Source lines ==> probe chains associated with source sections starting on the line.
+     * Map: Source lines ==&gt; probe chains associated with source sections starting on the line.
      */
     private final Map<SourceLineLocation, Set<ProbeChain>> lineToProbeChains = new HashMap<>();