1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:43:20 +08:00

Remove unused returns

This commit is contained in:
Dean Herbert 2019-11-06 16:36:12 +09:00
parent 7ebd5daf7d
commit 7b5b3ff15c

View File

@ -43,7 +43,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
/// </summary> /// </summary>
/// <param name="connection">The <see cref="FollowPointConnection"/> to add.</param> /// <param name="connection">The <see cref="FollowPointConnection"/> to add.</param>
/// <returns>The index of <paramref name="connection"/> in <see cref="connections"/>.</returns> /// <returns>The index of <paramref name="connection"/> in <see cref="connections"/>.</returns>
private int addConnection(FollowPointConnection connection) private void addConnection(FollowPointConnection connection)
{ {
AddInternal(connection); AddInternal(connection);
@ -74,8 +74,6 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
FollowPointConnection previousConnection = connections[index - 1]; FollowPointConnection previousConnection = connections[index - 1];
previousConnection.End = connection.Start; previousConnection.End = connection.Start;
} }
return index;
} }
/// <summary> /// <summary>
@ -83,7 +81,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
/// </summary> /// </summary>
/// <param name="connection">The <see cref="FollowPointConnection"/> to remove.</param> /// <param name="connection">The <see cref="FollowPointConnection"/> to remove.</param>
/// <returns>Whether <paramref name="connection"/> was removed.</returns> /// <returns>Whether <paramref name="connection"/> was removed.</returns>
private bool removeGroup(FollowPointConnection connection) private void removeGroup(FollowPointConnection connection)
{ {
RemoveInternal(connection); RemoveInternal(connection);
@ -99,7 +97,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
previousConnection.End = connection.End; previousConnection.End = connection.End;
} }
return connections.Remove(connection); connections.Remove(connection);
} }
private void onStartTimeChanged(FollowPointConnection connection) private void onStartTimeChanged(FollowPointConnection connection)