From 7e9f424fb7dcd11c894ceb9f6f049fd9eda80632 Mon Sep 17 00:00:00 2001 From: Albert Magyar Date: Mon, 20 Jul 2020 12:11:44 -0700 Subject: Delete outdated scalastyle configuration comments from source --- core/src/main/scala/chisel3/UIntFactory.scala | 2 -- 1 file changed, 2 deletions(-) (limited to 'core/src/main/scala/chisel3/UIntFactory.scala') diff --git a/core/src/main/scala/chisel3/UIntFactory.scala b/core/src/main/scala/chisel3/UIntFactory.scala index 3868962b..864e6cb8 100644 --- a/core/src/main/scala/chisel3/UIntFactory.scala +++ b/core/src/main/scala/chisel3/UIntFactory.scala @@ -15,7 +15,6 @@ trait UIntFactory { def apply(width: Width): UInt = new UInt(width) /** Create a UInt literal with specified width. */ - // scalastyle:off method.name protected[chisel3] def Lit(value: BigInt, width: Width): UInt = { val lit = ULit(value, width) val result = new UInt(lit.width) @@ -24,7 +23,6 @@ trait UIntFactory { } /** Create a UInt with the specified range, validate that range is effectively > 0 */ - //scalastyle:off cyclomatic.complexity def apply(range: IntervalRange): UInt = { // Check is only done against lower bound because range will already insist that range high >= low range.lowerBound match { -- cgit v1.2.3