@@ -41,7 +41,7 @@ func (s TagSize) String() string {
41
41
return fmt .Sprintf ("tag_depth=%d" , s .TagDepth )
42
42
}
43
43
44
- func (s HistorySize ) String () string {
44
+ func (s * HistorySize ) String () string {
45
45
return fmt .Sprintf (
46
46
"unique_commit_count=%d, unique_commit_count = %d, max_commit_size = %d, " +
47
47
"max_history_depth=%d, max_parent_count=%d, " +
@@ -369,7 +369,7 @@ type table struct {
369
369
buf bytes.Buffer
370
370
}
371
371
372
- func (s HistorySize ) TableString (
372
+ func (s * HistorySize ) TableString (
373
373
refGroups []RefGroup , threshold Threshold , nameStyle NameStyle ,
374
374
) string {
375
375
contents := s .contents (refGroups )
@@ -452,7 +452,7 @@ func (t *table) formatRow(
452
452
)
453
453
}
454
454
455
- func (s HistorySize ) JSON (
455
+ func (s * HistorySize ) JSON (
456
456
refGroups []RefGroup , threshold Threshold , nameStyle NameStyle ,
457
457
) ([]byte , error ) {
458
458
contents := s .contents (refGroups )
@@ -462,7 +462,7 @@ func (s HistorySize) JSON(
462
462
return j , err
463
463
}
464
464
465
- func (s HistorySize ) contents (refGroups []RefGroup ) tableContents {
465
+ func (s * HistorySize ) contents (refGroups []RefGroup ) tableContents {
466
466
S := newSection
467
467
I := newItem
468
468
metric := counts .Metric
0 commit comments