Commit 33ae8d35 by Mario Trangoni

comment unused struct fields

parent 89acafd5
...@@ -15,8 +15,8 @@ import ( ...@@ -15,8 +15,8 @@ import (
) )
type Engine struct { type Engine struct {
execQueue chan *Job execQueue chan *Job
clock clock.Clock //clock clock.Clock
ticker *Ticker ticker *Ticker
scheduler Scheduler scheduler Scheduler
evalHandler EvalHandler evalHandler EvalHandler
......
...@@ -16,7 +16,7 @@ type RuleReader interface { ...@@ -16,7 +16,7 @@ type RuleReader interface {
type DefaultRuleReader struct { type DefaultRuleReader struct {
sync.RWMutex sync.RWMutex
serverID string //serverID string
serverPosition int serverPosition int
clusterSize int clusterSize int
log log.Logger log log.Logger
......
...@@ -179,7 +179,7 @@ type CopyTableDataMigration struct { ...@@ -179,7 +179,7 @@ type CopyTableDataMigration struct {
targetTable string targetTable string
sourceCols []string sourceCols []string
targetCols []string targetCols []string
colMap map[string]string //colMap map[string]string
} }
func NewCopyTableDataMigration(targetTable string, sourceTable string, colMap map[string]string) *CopyTableDataMigration { func NewCopyTableDataMigration(targetTable string, sourceTable string, colMap map[string]string) *CopyTableDataMigration {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment