Lucene.Net.Support.IO.FileSupport: Made class static
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/06f349a7 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/06f349a7 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/06f349a7 Branch: refs/heads/master Commit: 06f349a7707e4e460272fd30388e4438fa990bc0 Parents: 4467e6e Author: Shad Storhaug <[email protected]> Authored: Sat Sep 23 19:28:37 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sat Sep 23 19:28:37 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net/Support/IO/FileSupport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/06f349a7/src/Lucene.Net/Support/IO/FileSupport.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Support/IO/FileSupport.cs b/src/Lucene.Net/Support/IO/FileSupport.cs index bac1e5a..491ee35 100644 --- a/src/Lucene.Net/Support/IO/FileSupport.cs +++ b/src/Lucene.Net/Support/IO/FileSupport.cs @@ -29,7 +29,7 @@ namespace Lucene.Net.Support.IO /// <summary> /// Represents the methods to support some operations over files. /// </summary> - public class FileSupport + public static class FileSupport { private static readonly object _lock = new object();
