Browse Source

Remove unused code

master
Savorboard 4 years ago
parent
commit
6f41916241
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      src/DotNetCore.CAP.AmazonSQS/TopicNormalizer.cs

+ 1
- 6
src/DotNetCore.CAP.AmazonSQS/TopicNormalizer.cs View File

@@ -11,11 +11,6 @@ namespace DotNetCore.CAP.AmazonSQS
throw new ArgumentOutOfRangeException(nameof(origin) + " character string length must between 1~256!");
}
return origin.Replace(".", "-").Replace(":", "_");
}

public static string DeNormalizeForAws(this string origin)
{
return origin.Replace("-", ".").Replace("_", ":");
}
}
}
}

Loading…
Cancel
Save