just format

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3479 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2009-04-17 20:56:13 +00:00
parent 04722c0331
commit 65eba6917d
1 changed files with 3 additions and 5 deletions

View File

@ -32,12 +32,10 @@ public class SlowSparseNumberedGraph<T> extends AbstractNumberedGraph<T> {
}
/**
* If normalOutCount == n, this edge manager will eagerly allocated n words to hold out edges for each node. (performance
* optimization for time)
*
* If normalOutCount == n, this edge manager will eagerly allocated n words to
* hold out edges for each node. (performance optimization for time)
*
* @param normalOutCount
* what is the "normal" number of out edges for a node?
* @param normalOutCount what is the "normal" number of out edges for a node?
*/
public SlowSparseNumberedGraph(int normalOutCount) {
edgeManager = new SparseNumberedEdgeManager<T>(nodeManager, normalOutCount, BasicNaturalRelation.TWO_LEVEL);