Skip to content

Commit

Permalink
fix: removed unused, changed visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Iam1337 committed Jun 14, 2024
1 parent 53e42f0 commit 530fdbd
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 32 deletions.
26 changes: 0 additions & 26 deletions Assets/extApi/Runtime/ApiHooks.cs

This file was deleted.

3 changes: 0 additions & 3 deletions Assets/extApi/Runtime/ApiHooks.cs.meta

This file was deleted.

2 changes: 1 addition & 1 deletion Assets/extApi/Runtime/ApiRouteNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace extApi
{
public class ApiRouteNode
internal class ApiRouteNode
{
public readonly string Name;
public readonly List<ApiRouteNode> Nodes = new();
Expand Down
2 changes: 1 addition & 1 deletion Assets/extApi/Runtime/ApiRouteTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace extApi
{
public class ApiRouteTarget
internal class ApiRouteTarget
{
public object Controller;
public MethodInfo MethodInfo;
Expand Down
2 changes: 1 addition & 1 deletion Assets/extApi/Runtime/ApiUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace extApi
{
public static class ApiUtils
internal static class ApiUtils
{
public static string Combine(string uri1, string uri2) => $"{uri1.TrimEnd('/')}/{uri2.TrimStart('/')}";

Expand Down

0 comments on commit 530fdbd

Please sign in to comment.