-
Notifications
You must be signed in to change notification settings - Fork 1
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
Florida #92
base: master
Are you sure you want to change the base?
Florida #92
Conversation
@@ -108,32 +108,32 @@ | |||
value="Type name ''{0}'' must match pattern ''{1}''."/> | |||
</module> | |||
<module name="MemberName"> | |||
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/> | |||
<property name="format" value="^[a-zPos][a-z0-9][a-zA-Z0-9]*$"/> |
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 is Pos
special?
boolean subcommandsForceTerminate) { | ||
return new Command(x -> Flowable.fromPublisher(commandStream).share() | ||
.concatMap(y -> Flowable.<Terminator>just(FlattenedTerminator.from(y.execute(subcommandsSelfTerminate))) | ||
.subscribeOn(Schedulers.io())) |
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.
Is the switch to trampoline
in a different branch?
|
||
import io.reactivex.functions.Consumer; | ||
|
||
public abstract class ServoController implements Consumer<ServoCommand> { |
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's this class need to be abstract? Don't see any other subclasses besides RevServo
Before Merging