Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename parameter 'c' to 'obj' to match the interface declaration.
  • Loading branch information
axunonb committed Oct 20, 2024
commit 1a8c88edbc353e7bf735a09f0e34d12348efacfb
2 changes: 1 addition & 1 deletion Ical.Net/CalendarObjectBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class CalendarObjectBase : ICopyable, ILoadable
/// Makes a deep copy of the <see cref="ICopyable"/> source
/// to the current object. This method must be overridden in a derived class.
/// </summary>
public virtual void CopyFrom(ICopyable c)
public virtual void CopyFrom(ICopyable obj)
{
throw new NotImplementedException("Must be implemented in a derived class.");
}
Expand Down