Skip to content

Commit 22098c7

Browse files
authored
style: remove redundant PMD exclusions (#6209)
1 parent a5a4873 commit 22098c7

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

pmd-exclude.properties

-25
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,19 @@
1-
com.thealgorithms.bitmanipulation.SingleBitOperations=UselessParentheses
21
com.thealgorithms.ciphers.AffineCipher=UselessParentheses
3-
com.thealgorithms.ciphers.ColumnarTranspositionCipher=UnnecessaryFullyQualifiedName
42
com.thealgorithms.ciphers.DES=UselessParentheses
5-
com.thealgorithms.ciphers.HillCipher=UselessParentheses
63
com.thealgorithms.ciphers.RSA=UselessParentheses
74
com.thealgorithms.conversions.AnyBaseToAnyBase=UselessParentheses
85
com.thealgorithms.conversions.AnytoAny=UselessParentheses
9-
com.thealgorithms.conversions.HexToOct=UselessParentheses
10-
com.thealgorithms.conversions.IntegerToRoman=UnnecessaryFullyQualifiedName
11-
com.thealgorithms.datastructures.crdt.LWWElementSet=UselessParentheses
126
com.thealgorithms.datastructures.crdt.Pair=UnusedPrivateField
137
com.thealgorithms.datastructures.graphs.AStar=UselessParentheses
148
com.thealgorithms.datastructures.graphs.AdjacencyMatrixGraph=CollapsibleIfStatements,UnnecessaryFullyQualifiedName,UselessParentheses
159
com.thealgorithms.datastructures.graphs.BipartiteGraphDFS=CollapsibleIfStatements
16-
com.thealgorithms.datastructures.graphs.Kruskal=UselessParentheses
1710
com.thealgorithms.datastructures.hashmap.hashing.HashMapCuckooHashing=UselessParentheses
1811
com.thealgorithms.datastructures.heaps.FibonacciHeap=UselessParentheses
19-
com.thealgorithms.datastructures.heaps.HeapElement=UselessParentheses
2012
com.thealgorithms.datastructures.heaps.HeapNode=UselessParentheses
2113
com.thealgorithms.datastructures.lists.DoublyLinkedList=UselessParentheses
2214
com.thealgorithms.datastructures.lists.SearchSinglyLinkedListRecursion=UselessParentheses
2315
com.thealgorithms.datastructures.lists.SinglyLinkedList=UnusedLocalVariable
2416
com.thealgorithms.datastructures.queues.PriorityQueue=UselessParentheses
25-
com.thealgorithms.datastructures.stacks.NodeStack=UnnecessaryFullyQualifiedName,UnusedFormalParameter
26-
com.thealgorithms.datastructures.stacks.StackArray=UselessParentheses
2717
com.thealgorithms.datastructures.trees.CheckBinaryTreeIsValidBST=UselessParentheses
2818
com.thealgorithms.datastructures.trees.SegmentTree=UselessParentheses
2919
com.thealgorithms.devutils.nodes.LargeTreeNode=UselessParentheses
@@ -32,9 +22,6 @@ com.thealgorithms.devutils.nodes.SimpleTreeNode=UselessParentheses
3222
com.thealgorithms.devutils.nodes.TreeNode=UselessParentheses
3323
com.thealgorithms.divideandconquer.ClosestPair=UnnecessaryFullyQualifiedName,UselessParentheses
3424
com.thealgorithms.divideandconquer.Point=UselessParentheses
35-
com.thealgorithms.dynamicprogramming.MatrixChainMultiplication=UselessParentheses
36-
com.thealgorithms.dynamicprogramming.ShortestSuperSequence=UselessParentheses
37-
com.thealgorithms.dynamicprogramming.UniquePaths=UnnecessarySemicolon
3825
com.thealgorithms.dynamicprogramming.WineProblem=UselessParentheses
3926
com.thealgorithms.maths.BinomialCoefficient=UselessParentheses
4027
com.thealgorithms.maths.Complex=UselessParentheses
@@ -46,44 +33,32 @@ com.thealgorithms.maths.KaprekarNumbers=UselessParentheses
4633
com.thealgorithms.maths.KeithNumber=UselessParentheses
4734
com.thealgorithms.maths.LeonardoNumber=UselessParentheses
4835
com.thealgorithms.maths.LinearDiophantineEquationsSolver=UselessParentheses
49-
com.thealgorithms.maths.MatrixUtil=UselessParentheses
5036
com.thealgorithms.maths.RomanNumeralUtil=UselessParentheses
5137
com.thealgorithms.maths.SecondMinMax=UselessParentheses
5238
com.thealgorithms.maths.SecondMinMaxTest=UnnecessaryFullyQualifiedName
5339
com.thealgorithms.maths.StandardDeviation=UselessParentheses
5440
com.thealgorithms.maths.SumOfArithmeticSeries=UselessParentheses
5541
com.thealgorithms.maths.TrinomialTriangle=UselessParentheses
56-
com.thealgorithms.maths.VampireNumber=CollapsibleIfStatements
5742
com.thealgorithms.maths.Volume=UselessParentheses
5843
com.thealgorithms.misc.Sparsity=UselessParentheses
59-
com.thealgorithms.misc.ThreeSumProblem=UselessParentheses
60-
com.thealgorithms.misc.WordBoggle=UselessParentheses
6144
com.thealgorithms.others.CRC16=UselessParentheses
6245
com.thealgorithms.others.Damm=UnnecessaryFullyQualifiedName
6346
com.thealgorithms.others.Luhn=UnnecessaryFullyQualifiedName
6447
com.thealgorithms.others.Mandelbrot=UselessParentheses
65-
com.thealgorithms.others.MaximumSumOfDistinctSubarraysWithLengthK=CollapsibleIfStatements
6648
com.thealgorithms.others.MiniMaxAlgorithm=UselessParentheses
6749
com.thealgorithms.others.PageRank=UselessParentheses
6850
com.thealgorithms.others.PerlinNoise=UselessParentheses
6951
com.thealgorithms.others.QueueUsingTwoStacks=UselessParentheses
70-
com.thealgorithms.others.QueueWithStack=UselessParentheses
7152
com.thealgorithms.others.Trieac=UselessParentheses
7253
com.thealgorithms.others.Verhoeff=UnnecessaryFullyQualifiedName
7354
com.thealgorithms.searches.InterpolationSearch=UselessParentheses
7455
com.thealgorithms.searches.KMPSearch=UselessParentheses
75-
com.thealgorithms.searches.LinearSearchThread=EmptyCatchBlock
7656
com.thealgorithms.searches.RabinKarpAlgorithm=UselessParentheses
7757
com.thealgorithms.sorts.CircleSort=EmptyControlStatement
78-
com.thealgorithms.sorts.CombSort=UselessParentheses
7958
com.thealgorithms.sorts.DutchNationalFlagSort=UselessParentheses
80-
com.thealgorithms.sorts.LinkListSort=EmptyControlStatement,UnusedLocalVariable
8159
com.thealgorithms.sorts.MergeSortNoExtraSpace=UselessParentheses
82-
com.thealgorithms.sorts.PigeonholeSort=UselessParentheses
8360
com.thealgorithms.sorts.RadixSort=UselessParentheses
8461
com.thealgorithms.sorts.WiggleSort=UselessParentheses
8562
com.thealgorithms.stacks.PostfixToInfix=UselessParentheses
8663
com.thealgorithms.strings.HorspoolSearch=UnnecessaryFullyQualifiedName,UselessParentheses
87-
com.thealgorithms.strings.MyAtoi=UselessParentheses
8864
com.thealgorithms.strings.Palindrome=UselessParentheses
89-
com.thealgorithms.strings.Solution=CollapsibleIfStatements

0 commit comments

Comments
 (0)