Skip to content

Commit

Permalink
Merge pull request #464 from jluhrs/feature/SEQNG-530
Browse files Browse the repository at this point in the history
SEQNG-530 Prevent accessing EPICS objects before initialization.
  • Loading branch information
jluhrs authored Feb 8, 2018
2 parents 4e80437 + 0b2ade3 commit 12d75b0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ object GnirsControllerEpics extends GnirsController {
import GnirsController._
import EpicsCodex._

private val epicsSys = GnirsEpics.instance
private val ccCmd = epicsSys.configCCCmd
private val dcCmd = epicsSys.configDCCmd
private def epicsSys = GnirsEpics.instance
private def ccCmd = epicsSys.configCCCmd
private def dcCmd = epicsSys.configDCCmd

val readModeEncoder: EncodeEpicsValue[ReadMode, (Int, Int)] = EncodeEpicsValue {
case ReadMode.VERY_BRIGHT => (1, 1)
Expand Down

0 comments on commit 12d75b0

Please sign in to comment.