Selaa lähdekoodia

Remove unused code

master
Savorboard 4 vuotta sitten
vanhempi
commit
6f41916241
1 muutettua tiedostoa jossa 1 lisäystä ja 6 poistoa
  1. +1
    -6
      src/DotNetCore.CAP.AmazonSQS/TopicNormalizer.cs

+ 1
- 6
src/DotNetCore.CAP.AmazonSQS/TopicNormalizer.cs Näytä tiedosto

@@ -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("_", ":");
}
}
}
}

Ladataan…
Peruuta
Tallenna