Skip to content

Commit

Permalink
include missing namespace changes from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Jul 26, 2024
1 parent 73525c2 commit 26df6bd
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 33 deletions.
6 changes: 3 additions & 3 deletions backend/FwLite/LcmCrdt/Changes/CreateEntryChange.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Text.Json.Serialization;
using Crdt;
using Crdt.Changes;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Entities;
using MiniLcm;

namespace LcmCrdt.Changes;
Expand Down
8 changes: 4 additions & 4 deletions backend/FwLite/LcmCrdt/Changes/CreateExampleSentenceChange.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Text.Json.Serialization;
using Crdt;
using Crdt.Changes;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;
using MiniLcm;

namespace LcmCrdt.Changes;
Expand Down
6 changes: 3 additions & 3 deletions backend/FwLite/LcmCrdt/Changes/CreateSemanticDomainChange.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Crdt;
using Crdt.Changes;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Entities;
using MiniLcm;
using SemanticDomain = LcmCrdt.Objects.SemanticDomain;

Expand Down
8 changes: 4 additions & 4 deletions backend/FwLite/LcmCrdt/Changes/CreateSenseChange.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Text.Json.Serialization;
using Crdt;
using Crdt.Changes;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;
using MiniLcm;

namespace LcmCrdt.Changes;
Expand Down
8 changes: 4 additions & 4 deletions backend/FwLite/LcmCrdt/Changes/CreateWritingSystemChange.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Diagnostics.CodeAnalysis;
using System.Text.Json.Serialization;
using Crdt;
using Crdt.Changes;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;
using MiniLcm;

namespace LcmCrdt.Changes;
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/Changes/ReplaceSemanticDomainChange.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt.Changes;
using Crdt.Entities;
using SIL.Harmony.Changes;
using SIL.Harmony.Entities;
using MiniLcm;

namespace LcmCrdt.Changes;
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/Changes/SetPartOfSpeechChange.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt.Changes;
using Crdt.Entities;
using SIL.Harmony.Changes;
using SIL.Harmony.Entities;

namespace LcmCrdt.Changes;

Expand Down
6 changes: 3 additions & 3 deletions backend/FwLite/LcmCrdt/Objects/ExampleSentence.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Text.Json;
using Crdt;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;

namespace LcmCrdt.Objects;

Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/Objects/PartOfSpeech.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Entities;
using LcmCrdt.Changes;
using MiniLcm;

Expand Down
8 changes: 4 additions & 4 deletions backend/FwLite/LcmCrdt/Objects/Sense.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Crdt;
using Crdt.Changes;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;
using LcmCrdt.Changes;
using LcmCrdt.Utils;
using SystemTextJsonPatch;
Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LcmCrdt/Utils/JsonPatchRewriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Runtime.CompilerServices;
using System.Text.Json;
using System.Text.Json.Serialization;
using Crdt.Changes;
using SIL.Harmony.Changes;
using SystemTextJsonPatch;
using SystemTextJsonPatch.Internal;
using SystemTextJsonPatch.Operations;
Expand Down
2 changes: 1 addition & 1 deletion backend/LexBoxApi/Controllers/CrdtController.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Crdt.Core;
using SIL.Harmony.Core;
using LexBoxApi.Auth.Attributes;
using LexData;
using Microsoft.AspNetCore.Mvc;
Expand Down

0 comments on commit 26df6bd

Please sign in to comment.