Skip to content

Commit

Permalink
Remove warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
hohno-panopto committed Sep 17, 2020
1 parent ef77859 commit f4dba7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public bool UpdateSessionOwner (Guid sessionId, string username)
this.sessionManagement.UpdateSessionOwner(this.authentication, new Guid[] { sessionId }, username);
return true;
}
catch (Exception ex)
catch (Exception)
{
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public UserManagementWrapper(string site, string username, string password)
{
return this.userManagement.GetUserByKey(this.authentication, username).UserId;
}
catch (Exception ex)
catch (Exception)
{ return null; }
}

Expand Down

0 comments on commit f4dba7b

Please sign in to comment.