Dropped: private[this] and protected[this]

The private[this] and protected[this] access modifiers are deprecated and will be phased out.

Previously, these modifier were needed

The compiler now infers for private members the fact that they are only accessed via this. Such members are treated as if they had been declared private[this]. protected[this] is dropped without a replacement.