[Joeq-checkins] SF.net SVN: joeq: [2463] trunk/jwutil/main/src/java/jwutil/graphs/Dominators.java
Status: Alpha
Brought to you by:
joewhaley
From: <joe...@us...> - 2006-06-06 08:33:21
|
Revision: 2463 Author: joewhaley Date: 2006-06-06 01:33:15 -0700 (Tue, 06 Jun 2006) ViewCVS: http://svn.sourceforge.net/joeq/?rev=2463&view=rev Log Message: ----------- Remove unused field. Modified Paths: -------------- trunk/jwutil/main/src/java/jwutil/graphs/Dominators.java Modified: trunk/jwutil/main/src/java/jwutil/graphs/Dominators.java =================================================================== --- trunk/jwutil/main/src/java/jwutil/graphs/Dominators.java 2006-06-06 08:30:44 UTC (rev 2462) +++ trunk/jwutil/main/src/java/jwutil/graphs/Dominators.java 2006-06-06 08:33:15 UTC (rev 2463) @@ -64,11 +64,6 @@ private int[] semi; /** - * Map for labeling the nodes. - */ - private Map map; - - /** * True if we are computing post-dominators, false otherwise. */ private boolean post; @@ -83,7 +78,6 @@ int num = setLabels(start); - map = new HashMap(1 + num / 4); vertex = new Object[num]; semi = new int[num]; parent = new Object[num]; @@ -115,7 +109,6 @@ ancestor = null; label = null; buckets = null; - map = null; } private IndexMap labels; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |