Commit 7678fc53 authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Avoid some excess output.

Remove some debug output, cleaning up stuff.


git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/branches/TableTool_refactor@8764 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 16a10dc6
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@ classdef HierarchicalGrid < handle
        
        function count = subgrid_count(object)
            count = object.subgrid_count_impl(object.grid);
            count
        end
        
        function count = subgrid_count_impl(object, grid)
@@ -43,7 +42,7 @@ classdef HierarchicalGrid < handle
                ecount = object.subgrid_count_impl(grid{i}.grid);
                count = count + ecount;
            end
            size(grid, 2)
            
            if size(grid, 2) ~= 0
                count = count + 1;
            end