Skip to content

Commit e67ecd7

Browse files
committed
Removing excess comments
1 parent bd76071 commit e67ecd7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

SSLLWrapper/SSLLService.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ internal SSLLService(string apiUrl, IApiProvider apiProvider)
6161
public Info Info()
6262
{
6363
var infoModel = new Info();
64-
65-
// Building new request model
6664
var requestModel = _requestModelFactory.NewInfoRequestModel(ApiUrl, "info");
6765

6866
try
@@ -82,7 +80,6 @@ public Info Info()
8280
infoModel.Errors.Add(new Error { message = ex.ToString() });
8381
}
8482

85-
// Checking if errors have occoured either from ethier api or wrapper
8683
if (infoModel.Errors.Count != 0 && !infoModel.HasErrorOccurred) { infoModel.HasErrorOccurred = true;}
8784

8885
return infoModel;
@@ -112,7 +109,6 @@ public Analyze Analyze(string host, Publish publish, ClearCache clearCache, From
112109

113110
try
114111
{
115-
// Making Api request and binding result to model
116112
var webResponse = _apiProvider.MakeGetRequest(requestModel);
117113
analyzeModel = _responsePopulation.AnalyzeModel(webResponse, analyzeModel);
118114
}
@@ -151,7 +147,6 @@ public Endpoint GetEndpointData(string host, string s, FromCache fromCache)
151147

152148
try
153149
{
154-
// Making Api request and binding result to model
155150
var webResponse = _apiProvider.MakeGetRequest(requestModel);
156151
endpointModel = _responsePopulation.EndpointModel(webResponse, endpointModel);
157152
}
@@ -174,7 +169,6 @@ public StatusCodes GetStatusCodes()
174169

175170
try
176171
{
177-
// Making Api request and binding result to model
178172
var webResponse = _apiProvider.MakeGetRequest(requestModel);
179173
statusCodesModel = _responsePopulation.StatusCodesModel(webResponse, statusCodesModel);
180174
}

0 commit comments

Comments
 (0)