consistency with java naming conventions

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@535 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2009-04-24 21:44:48 +00:00
parent bfce0c93ab
commit ce470702fc
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ public class DepthOfCoverageWalker extends LocusWalker<Integer, Pair<Long, Long>
return context.getReads().size(); return context.getReads().size();
} }
public boolean ReduceByInterval() { public boolean isReduceByInterval() {
return true; return true;
} }

View File

@ -79,7 +79,7 @@ public abstract class Walker<MapType, ReduceType> {
* The system will call onTraversalDone( GenomeLoc -> reduce ), after all reductions are done, * The system will call onTraversalDone( GenomeLoc -> reduce ), after all reductions are done,
* which is overloaded here to call onTraversalDone(reduce) for each location * which is overloaded here to call onTraversalDone(reduce) for each location
*/ */
public boolean ReduceByInterval() { public boolean isReduceByInterval() {
return false; return false;
} }
} }