Skip to content

Commit

Permalink
- Fixes (#1127)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiphil committed Aug 17, 2023
1 parent d12990e commit 96d73c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 17 deletions.
10 changes: 2 additions & 8 deletions Source/Mosa.FileSystem/VFS/NodeBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ namespace Mosa.FileSystem.VFS;
/// </summary>
public abstract class NodeBase : IVfsNode
{
#region Data Members

/// <summary>
/// Holds the file system of the node.
/// </summary>

#endregion Data Members

#region Construction

/// <summary>
Expand Down Expand Up @@ -47,6 +39,7 @@ protected NodeBase(IFileSystem fs, VfsNodeType type)
After:
public IFileSystem FileSystem { get; } }
*/

public IFileSystem FileSystem { get; private set; }

/// <summary>
Expand All @@ -60,6 +53,7 @@ protected NodeBase(IFileSystem fs, VfsNodeType type)
After:
public VfsNodeType NodeType { get; } }
*/

public VfsNodeType NodeType { get; private set; }

/// <summary>
Expand Down
8 changes: 0 additions & 8 deletions Source/Mosa.FileSystem/VFS/SymbolicLinkNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@ namespace Mosa.FileSystem.VFS;
/// </summary>
public sealed class SymbolicLinkNode : NodeBase
{
#region Data Members

/// <summary>
/// The target of the symbolic link.
/// </summary>

#endregion Data Members

#region Construction

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Source/Mosa.Runtime/Internal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static class Internal
/// <summary>
/// An object header the following memory layout:
/// - Hash Value (32-bit)
/// - Lock & Status (32-bit)
/// - Lock and Status (32-bit)
/// - MethodTable (native int)
/// </summary>
internal static int ObjectHeaderSize
Expand Down

0 comments on commit 96d73c1

Please sign in to comment.