File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ trait Selectable extends scala.Selectable:
2323  final  def  selectDynamic (name : String ):  Any  = 
2424    val  rcls  =  selectedValue.getClass
2525    try 
26-       val  fld  =  rcls.getField(NameTransformer .encode(name)).nn 
26+       val  fld  =  rcls.getField(NameTransformer .encode(name))
2727      ensureAccessible(fld)
2828      fld.get(selectedValue)
2929    catch  case  ex : NoSuchFieldException  => 
@@ -37,7 +37,7 @@ trait Selectable extends scala.Selectable:
3737   */  
3838  final  def  applyDynamic (name : String , paramTypes : Class [? ]* )(args : Any * ):  Any  = 
3939    val  rcls  =  selectedValue.getClass
40-     val  mth  =  rcls.getMethod(NameTransformer .encode(name), paramTypes* ).nn 
40+     val  mth  =  rcls.getMethod(NameTransformer .encode(name), paramTypes* )
4141    ensureAccessible(mth)
4242    mth.invoke(selectedValue, args.asInstanceOf [Seq [AnyRef ]]* )
4343
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ object FromDigits {
154154        case  ex : NumberFormatException  =>  throw  MalformedNumber ()
155155      }
156156    if  (x.isInfinite) throw  NumberTooLarge ()
157-     if  (x ==  0.0d  &&  ! zeroFloat.pattern.matcher(digits).nn. matches) throw  NumberTooSmall ()
157+     if  (x ==  0.0d  &&  ! zeroFloat.pattern.matcher(digits).matches) throw  NumberTooSmall ()
158158    x
159159  }
160160
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments