@@ -61,7 +61,6 @@ func (d *strIterativeReplaceDataSource) Metadata(
61
61
req datasource.MetadataRequest ,
62
62
resp * datasource.MetadataResponse ,
63
63
) {
64
-
65
64
tflog .Info (ctx , "Starting StrIterativeReplace DataSource Metadata method." )
66
65
67
66
resp .TypeName = req .ProviderTypeName + "_str_iterative_replace"
@@ -78,7 +77,6 @@ func (d *strIterativeReplaceDataSource) Schema(
78
77
_ datasource.SchemaRequest ,
79
78
resp * datasource.SchemaResponse ,
80
79
) {
81
-
82
80
tflog .Info (ctx , "Starting StrIterativeReplace DataSource Schema method." )
83
81
84
82
resp .Schema = schema.Schema {
@@ -128,7 +126,6 @@ func (d *strIterativeReplaceDataSource) Configure(
128
126
req datasource.ConfigureRequest ,
129
127
_ * datasource.ConfigureResponse ,
130
128
) {
131
-
132
129
tflog .Info (ctx , "Starting StrIterativeReplace DataSource Configure method." )
133
130
134
131
if req .ProviderData == nil {
@@ -143,7 +140,6 @@ func (d *strIterativeReplaceDataSource) Create(
143
140
req resource.CreateRequest , // lint:allow_large_memory
144
141
resp * resource.CreateResponse ,
145
142
) {
146
-
147
143
tflog .Info (ctx , "Starting StrIterativeReplace DataSource Create method." )
148
144
149
145
var plan strIterativeReplaceDataSourceModel
@@ -164,7 +160,6 @@ func (d *strIterativeReplaceDataSource) Read( // lint:no_dupe
164
160
_ datasource.ReadRequest , // lint:allow_large_memory
165
161
resp * datasource.ReadResponse ,
166
162
) {
167
-
168
163
tflog .Info (ctx , "Starting StrIterativeReplace DataSource Read method." )
169
164
170
165
var state strIterativeReplaceDataSourceModel
0 commit comments