Skip to content

Commit

Permalink
Refactor rename namespace to Lucene.Net.Native
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirwin committed Aug 12, 2024
1 parent b3a425f commit a79425b
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/Lucene.Net/Support/IO/PosixFsyncSupport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
using System;
using System.IO;
using System.Runtime.InteropServices;
using static Lucene.Net.Support.Native.Interop.Posix;
using static Lucene.Net.Support.Native.Interop.MacOS;
using static Lucene.Net.Native.Interop.Posix;
using static Lucene.Net.Native.Interop.MacOS;

namespace Lucene.Net.Support.IO
{
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/IO/WindowsFsyncSupport.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.IO;
using System.Runtime.InteropServices;
using static Lucene.Net.Support.Native.Interop.Win32;
using static Lucene.Net.Native.Interop.Win32;

namespace Lucene.Net.Support.IO
{
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.MacOS.Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Posix.Close.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Runtime.InteropServices;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Posix.Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Posix.Fcntl.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Runtime.InteropServices;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Posix.Fsync.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Runtime.InteropServices;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Posix.Open.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Runtime.InteropServices;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Win32.CloseHandle.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Win32.Constants.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Support/Native/Interop.Win32.CreateFileW.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;

namespace Lucene.Net.Support.Native
namespace Lucene.Net.Native
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down

0 comments on commit a79425b

Please sign in to comment.