Skip to content

Commit 6d2d356

Browse files
committed
remove un-necessary comments
1 parent 2574ce8 commit 6d2d356

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/Backbone.Todos/Global.asax.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ public object Get(Todo todo)
3737
/// <summary>
3838
/// Handles creating and updating the Todo items.
3939
/// </summary>
40-
/// <param name="todo">The todo.</param>
41-
/// <returns></returns>
4240
public Todo Post(Todo todo)
4341
{
4442
var redis = Redis.As<Todo>();
@@ -55,8 +53,6 @@ public Todo Post(Todo todo)
5553
/// <summary>
5654
/// Handles creating and updating the Todo items.
5755
/// </summary>
58-
/// <param name="todo">The todo.</param>
59-
/// <returns></returns>
6056
public Todo Put(Todo todo)
6157
{
6258
return Post(todo);
@@ -65,7 +61,6 @@ public Todo Put(Todo todo)
6561
/// <summary>
6662
/// Handles Deleting the Todo item
6763
/// </summary>
68-
/// <param name="todo"></param>
6964
public void Delete(Todo todo)
7065
{
7166
Redis.As<Todo>().DeleteById(todo.Id);

0 commit comments

Comments
 (0)