Skip to content

Commit

Permalink
fix: Remove nonsense condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
adelkahomolova committed Aug 23, 2019
1 parent 4f1fce2 commit b5d3d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detectors/ScanningStrategyDetector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class ScanningStrategyDetector implements IDetector<string, ScanningStrat
return undefined;
}

if (true || remoteService.serviceType === ServiceType.github) {
if (remoteService.serviceType === ServiceType.github) {
const parsedUrl = gitUrlParse(remoteService.remoteUrl);

// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down

0 comments on commit b5d3d99

Please sign in to comment.