-
Notifications
You must be signed in to change notification settings - Fork 1
LL/#73 first implementation of input #98
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
Conversation
add osm4scala
#73-firstImplementationOfInput
Codecov Report
@@ Coverage Diff @@
## dev #98 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 25 25
Lines 1512 1512
Branches 236 236
=====================================
Misses 1512 1512 Continue to review full report at Codecov.
|
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
commit review suggestions Co-authored-by: Chris Kittl <44838605+ckittl@users.noreply.github.com>
Add OsmoGridModel as extension of OsmModel
|
Please resolve PSU#193 first |
|
Sonarqube fails as it seems that the currently used version does not recognize enums in scala 3 correctly. Please ignore this for now in your review. Will fix this asap. |
…ix input actor for new osmModel
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
This comment has been minimized.
This comment has been minimized.
ckittl
left a comment
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.
Thanks once again for your work! I think there is one or the other question, that needs clarification.
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
src/main/scala/edu/ie3/osmogrid/io/input/InputDataProvider.scala
Outdated
Show resolved
Hide resolved
Co-authored-by: Chris Kittl <44838605+ckittl@users.noreply.github.com>
This comment has been minimized.
This comment has been minimized.
5ac518e to
8bf85c3
Compare
This comment has been minimized.
This comment has been minimized.
ckittl
left a comment
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.
Only smaller remarks, other than that it looks pretty good! 🌞 Thanks!
| * @tparam T | ||
| * Behavior type | ||
| */ | ||
| trait ActorStopSupportStateless[T] { |
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.
Why did you decide to not extend the existing trait and override the methods? The traits are meant to do the same thing, but have different outline (cf. cleanUp is once a partial function and once a method)
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.
I now adapted the interface definitions to match types as far as possible (both using functions now)
No description provided.