aboutsummaryrefslogtreecommitdiff
path: root/DefaultDisposable.cs
blob: f991181f92a34b6a3f413fdb4cdbda975507e750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

namespace Rehau.Sku.Assist
{
    sealed class DefaultDisposable : IDisposable
    {

        public static readonly DefaultDisposable Instance = new DefaultDisposable();

        DefaultDisposable()
        {
        }

        public void Dispose()
        {
        }
    }

}