jorgeortiz85 / scala-time

A Scala wrapper for Joda Time

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DurationBuilder is not accessible

kostaskougios opened this issue · comments

Class DurationBuilder is not accessible but it is useful in many occasions. I.e. I would like to create methods like

def f(db: DurationBuilder) = ... do something

and use it like f(1.second + 50.millis)

If I use it right now I get:
class DurationBuilder in package time cannot be accessed in package org.scala_tools.time

Can this class be made public?