Skip to content

Commit

Permalink
remove unused using. (#28)
Browse files Browse the repository at this point in the history
correct typo.
  • Loading branch information
paul-cheung authored and Matt Stankiewicz committed Sep 3, 2019
1 parent c9aafa0 commit 05fefcb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
2 changes: 1 addition & 1 deletion StickersTemplate.Configuration/Providers/IStickerStore.cs
Expand Up @@ -36,7 +36,7 @@ public interface IStickerStore
Task UpdateStickersAsync(IList<Sticker> stickers);

/// <summary>
/// Update Sticker Asycn
/// Update Sticker Async
/// </summary>
/// <param name="sticker">Sticker</param>
/// <returns>Task</returns>
Expand Down
14 changes: 0 additions & 14 deletions StickersTemplate.Tests/Providers/StickerSetIndexerTests.cs
Expand Up @@ -8,25 +8,11 @@ namespace StickersTemplate.Tests.Providers
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Text;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Bot.Connector.Authentication;
using Microsoft.Bot.Schema;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Primitives;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using Newtonsoft.Json;
using StickersTemplate.Interfaces;
using StickersTemplate.Models;
using StickersTemplate.WebModels;

using Mutex = System.Threading.Mutex;
using Task = System.Threading.Tasks.Task;
using CancellationToken = System.Threading.CancellationToken;
using StickersTemplate.Providers;
using System.Linq;

Expand Down
Expand Up @@ -15,7 +15,7 @@ namespace StickersTemplate.Extensions
public static class ComposeExtensionValueExtensions
{
/// <summary>
/// Returns the first and only parameter value from the Compose Extesnion query value or null if one was not present.
/// Returns the first and only parameter value from the Compose Extension query value or null if one was not present.
/// </summary>
/// <param name="composeExtensionValue">The Compose Extension query value.</param>
/// <returns>The parameter value if one was present. Null otherwise.</returns>
Expand Down

0 comments on commit 05fefcb

Please sign in to comment.