-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make Sense.PartOfSpeech an object instead of a string #1350
base: develop
Are you sure you want to change the base?
Changes from all commits
d1e54aa
e92c76c
7385dfe
1788d74
c5f358d
a62cb9a
7cdd697
329a9c5
9d60316
6fbbf4c
64029e3
affd25b
bb0eec4
879f2d0
73a17b9
a36d2a2
261d8cb
24c1c61
a6b8b02
f652112
9b96ec5
b333bc1
e4521c5
93bc1b5
4890857
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
set => throw new NotImplementedException(); | ||
} | ||
|
||
public override string PartOfSpeech | ||
public override PartOfSpeech? PartOfSpeech | ||
{ | ||
get => throw new NotImplementedException(); | ||
set { } | ||
|
@@ -118,7 +118,7 @@ | |
get => | ||
new UpdateListProxy<ExampleSentence>( | ||
sentence => lexboxLcmApi.CreateExampleSentence(sense, sentence), | ||
sentence => lexboxLcmApi.DeleteExampleSentence(sense.Owner.Guid, Id, sentence.Id), | ||
Check warning on line 121 in backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs GitHub Actions / Build FwHeadless / publish-fw-headless
Check warning on line 121 in backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs GitHub Actions / Build FW Lite and run tests
Check warning on line 121 in backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs GitHub Actions / Build FwHeadless / publish-fw-headless
Check warning on line 121 in backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs GitHub Actions / Build FW Lite and run tests
|
||
i => new UpdateExampleSentenceProxy(sense.ExamplesOS[i], lexboxLcmApi), | ||
sense.ExamplesOS.Count | ||
); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this may cause problem, I'm not totally sure though.