Skip to content

Commit 82766b5

Browse files
committed
chore: fix spacing
1 parent e9980c2 commit 82766b5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Diff for: src/JsonApiDotNetCore/Internal/ContextEntity.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ public class ContextEntity
1111
/// <summary>
1212
/// The exposed resource name
1313
/// </summary>
14-
public string EntityName {
15-
get;
16-
set; }
14+
public string EntityName { get; set; }
1715

1816
/// <summary>
1917
/// The data model type
@@ -44,7 +42,7 @@ public string EntityName {
4442
public List<RelationshipAttribute> Relationships { get; set; }
4543

4644
private List<IResourceField> _fields;
47-
public List<IResourceField> Fields { get { _fields = _fields ?? Attributes.Cast<IResourceField>().Concat(Relationships).ToList(); return _fields; } }
45+
public List<IResourceField> Fields { get { return _fields = _fields ?? Attributes.Cast<IResourceField>().Concat(Relationships).ToList(); } }
4846

4947
/// <summary>
5048
/// Configures which links to show in the <see cref="TopLevelLinks"/>

0 commit comments

Comments
 (0)