hackedteam/vector-edk

View on GitHub
BaseTools/Source/Python/AutoGen/UniClassObject.py

Summary

Maintainability
F
6 days
Test Coverage

Function LoadUniFile has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
Open

    def LoadUniFile(self, File = None):
        if File == None:
            EdkLogger.error("Unicode File Parser", PARSER_ERROR, 'No unicode file is given')
        self.File = File
        #
Severity: Minor
Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 5 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

File UniClassObject.py has 390 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright (c) 2007 - 2012, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution.  The full text of the license may be found at
# http://opensource.org/licenses/bsd-license.php
Severity: Minor
Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 5 hrs to fix

    Function PreProcess has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
    Open

        def PreProcess(self, File):
            if not os.path.exists(File.Path) or not os.path.isfile(File.Path):
                EdkLogger.error("Unicode File Parser", FILE_NOT_FOUND, ExtraData=File.Path)
    
            try:
    Severity: Minor
    Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 4 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function GetLanguageCode has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

    def GetLanguageCode(LangName, IsCompatibleMode, File):
        global LangConvTable
    
        length = len(LangName)
        if IsCompatibleMode:
    Severity: Minor
    Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function AddStringToList has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

        def AddStringToList(self, Name, Language, Value, Token = None, Referenced = False, UseOtherLangDef = '', Index = -1):
            for LangNameItem in self.LanguageDef:
                if Language == LangNameItem[0]:
                    break
            else:
    Severity: Minor
    Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function GetLangDef has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

        def GetLangDef(self, File, Line):
            Lang = distutils.util.split_quoted((Line.split(u"//")[0]))
            if len(Lang) != 3:
                try:
                    FileIn = codecs.open(File.Path, mode='rb', encoding='utf-16').read()
    Severity: Minor
    Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function ReToken has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def ReToken(self):
            #
            # Retoken all language strings according to the status of string stoken in the first language string.
            #
            FirstLangName = self.LanguageDef[0][0]
    Severity: Minor
    Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function AddStringToList has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def AddStringToList(self, Name, Language, Value, Token = None, Referenced = False, UseOtherLangDef = '', Index = -1):
    Severity: Major
    Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 50 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if UseOtherLangDef != '':
                                  OtherLangDef = UseOtherLangDef
                              else:
                                  OtherLangDef = Language
                              self.OrderedStringList[LangName[0]].append(StringDefClassObject(Name, '', Referenced, Token, OtherLangDef))
      Severity: Major
      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if (Index == len(FileIn) -1):
                                    FileIn[Index] = os.linesep
                                else:
                                    FileIn[Index] = FileIn[Index + 1]
                            continue
        Severity: Major
        Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 45 mins to fix

          Function GetStringObject has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              def GetStringObject(self, Item):
                  Language = ''
                  Value = ''
          
                  Name = Item.split()[1]
          Severity: Minor
          Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 45 mins to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Consider simplifying this complex logical expression.
          Open

                      if Line.find(u'#string ') >= 0 and Line.find(u'#language ') < 0 and \
                          SecondLine.find(u'#string ') < 0 and SecondLine.find(u'#language ') >= 0 and \
                          ThirdLine.find(u'#string ') < 0 and ThirdLine.find(u'#language ') < 0:
                          Name = Line[Line.find(u'#string ') + len(u'#string ') : ].strip(' ')
                          Language = SecondLine[SecondLine.find(u'#language ') + len(u'#language ') : ].strip(' ')
          Severity: Major
          Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 40 mins to fix

            Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def __init__(self, Name = None, Value = None, Referenced = False, Token = None, UseOtherLangDef = ''):
            Severity: Minor
            Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 35 mins to fix

              Avoid too many return statements within this function.
              Open

                          return LangName
              Severity: Major
              Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                            return LangName
                Severity: Major
                Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                              return LangName
                  Severity: Major
                  Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                return LangName
                    Severity: Major
                    Found in BaseTools/Source/Python/AutoGen/UniClassObject.py - About 30 mins to fix

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                              if Name != '':
                                  MatchString = re.match('[A-Z0-9_]+', Name, re.UNICODE)
                                  if MatchString == None or MatchString.end(0) != len(Name):
                                      EdkLogger.error('Unicode File Parser', FORMAT_INVALID, 'The string token name %s defined in UNI file %s contains the invalid lower case character.' %(Name, self.File))
                      Severity: Major
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 3 hrs to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 433..436

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 69.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                                      if not self.IsCompatibleMode and Name != '':
                                          MatchString = re.match('[A-Z0-9_]+', Name, re.UNICODE)
                                          if MatchString == None or MatchString.end(0) != len(Name):
                                              EdkLogger.error('Unicode File Parser', FORMAT_INVALID, 'The string token name %s defined in UNI file %s contains the invalid lower case character.' %(Name, self.File))
                      Severity: Major
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 3 hrs to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 266..269

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 69.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                              if Value != None:
                                  self.StringValue = Value + u'\x00'        # Add a NULL at string tail
                                  self.StringValueByteList = UniToHexList(self.StringValue)
                                  self.Length = len(self.StringValueByteList)
                      Severity: Major
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 1 hr to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 183..187

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 49.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                          def UpdateValue(self, Value = None):
                              if Value != None:
                                  self.StringValue = Value + u'\x00'        # Add a NULL at string tail
                                  self.StringValueByteList = UniToHexList(self.StringValue)
                                  self.Length = len(self.StringValueByteList)
                      Severity: Major
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 1 hr to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 169..172

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 49.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                                  if (IndexI + 2) < len(Lines):
                                      ThirdLine = Lines[IndexI + 2]
                      Severity: Minor
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 55 mins to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 392..393

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 37.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                                  if (IndexI + 1) < len(Lines):
                                      SecondLine = Lines[IndexI + 1]
                      Severity: Minor
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 55 mins to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 394..395

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 37.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                              if LangName[0:2].isalpha() and LangName[2] == '-':
                                  return LangName
                      Severity: Minor
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 50 mins to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 140..142

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 36.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                          elif length == 5:
                              if LangName[0:2].isalpha() and LangName[2] == '-':
                                  return LangName
                      Severity: Minor
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 50 mins to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 144..145

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 36.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                                      Name = Line[Line.find(u'#string ') + len(u'#string ') : ].strip(' ')
                      Severity: Minor
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 35 mins to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 423..423

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 33.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                                      Language = SecondLine[SecondLine.find(u'#language ') + len(u'#language ') : ].strip(' ')
                      Severity: Minor
                      Found in BaseTools/Source/Python/AutoGen/UniClassObject.py and 1 other location - About 35 mins to fix
                      BaseTools/Source/Python/AutoGen/UniClassObject.py on lines 422..422

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 33.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      There are no issues that match your filters.

                      Category
                      Status