@@ -68,7 +68,7 @@ func (repo *Repository) CatFileBatch(ctx context.Context) (WriteCloserError, *bu
6868
6969 if ! repo .batchInUse {
7070 repo .batchInUse = true
71- return repo .batch .Writer , repo .batch .Reader , func () {
71+ return repo .batch .writer , repo .batch .reader , func () {
7272 repo .batchInUse = false
7373 }, nil
7474 }
@@ -78,7 +78,7 @@ func (repo *Repository) CatFileBatch(ctx context.Context) (WriteCloserError, *bu
7878 if err != nil {
7979 return nil , nil , nil , err
8080 }
81- return tempBatch .Writer , tempBatch .Reader , tempBatch .Close , nil
81+ return tempBatch .writer , tempBatch .reader , tempBatch .Close , nil
8282}
8383
8484// CatFileBatchCheck obtains a CatFileBatchCheck for this repository
@@ -93,7 +93,7 @@ func (repo *Repository) CatFileBatchCheck(ctx context.Context) (WriteCloserError
9393
9494 if ! repo .checkInUse {
9595 repo .checkInUse = true
96- return repo .check .Writer , repo .check .Reader , func () {
96+ return repo .check .writer , repo .check .reader , func () {
9797 repo .checkInUse = false
9898 }, nil
9999 }
@@ -103,7 +103,7 @@ func (repo *Repository) CatFileBatchCheck(ctx context.Context) (WriteCloserError
103103 if err != nil {
104104 return nil , nil , nil , err
105105 }
106- return tempBatchCheck .Writer , tempBatchCheck .Reader , tempBatchCheck .Close , nil
106+ return tempBatchCheck .writer , tempBatchCheck .reader , tempBatchCheck .Close , nil
107107}
108108
109109func (repo * Repository ) Close () error {
0 commit comments