Closed eest closed 6 years ago
In the lesson text only sayHello() uses startActive(true), while formatString() and printHello() calls startActive(). The solution file HelloActive.java calls startActive(true) in all functions. Which is the correct usage?
sayHello()
startActive(true)
formatString()
printHello()
startActive()
startActive(true) is correct, thanks for reporting it.
In the lesson text only
sayHello()
usesstartActive(true)
, whileformatString()
andprintHello()
callsstartActive()
. The solution file HelloActive.java callsstartActive(true)
in all functions. Which is the correct usage?