merge python scripts

This commit is contained in:
fixminer
2020-04-06 21:30:39 +02:00
parent 61a9612345
commit c5463f91f8
75 changed files with 95073 additions and 12 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+16
View File
@@ -0,0 +1,16 @@
pjName = gumInput
portInner = 6380
portDumps = 6399
parallelism = AKKA
numOfWorkers = 20
hostname = localhost
hunkLimit = 1
#inputPath = /Users/anilkoyuncu/projects/gumInputLinux
inputPath = /data/fixminer-core/python/data/gumInputLinux
redisPath = /data/fixminer-core/python/data/redis
#srcMLPath= /Users/anil.koyuncu/Downloads/srcML/src2srcml
#srcMLPath= /Users/anil.koyuncu/Downloads/srcML.0.9.5/bin/srcml
srcMLPath= /usr/local/bin/srcml
actionType = ALL
eDiffTimeout = 900
Binary file not shown.
Binary file not shown.
Binary file not shown.
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
source activate fixminerEnv
bugzoo bug build $1
+371
View File
@@ -0,0 +1,371 @@
{
"Repair Actions": {
"Assignment": {
"assignAdd": {
"name": "Addition",
"fullname": "Assignment addition"
},
"assignRem": {
"name": "Removal",
"fullname": "Assignment removal"
},
"assignExpChange": {
"name": "Expression modification",
"fullname": "Assignment expression modification"
}
},
"Conditional": {
"condBranIfAdd": {
"name": "if branch addition",
"fullname": "Conditional (if) branch addition"
},
"condBranIfElseAdd": {
"name": "if-else branches addition",
"fullname": "Conditional (if-else) branches addition"
},
"condBranElseAdd": {
"name": "else branch addition",
"fullname": "Conditional (else) branch addition"
},
"condBranCaseAdd": {
"name": "case branch addition",
"fullname": "Conditional (case in switch) branch addition"
},
"condBranRem": {
"name": "Removal",
"fullname": "Conditional (if or else) branch removal"
},
"condExpExpand": {
"name": "Expression expansion",
"fullname": "Conditional expression expansion"
},
"condExpRed": {
"name": "Expression reduction",
"fullname": "Conditional expression reduction"
},
"condExpMod": {
"name": "Expression modification",
"fullname": "Conditional expression modification"
}
},
"Loop": {
"loopAdd": {
"name": "Addition",
"fullname": "Loop addition"
},
"loopRem": {
"name": "Removal",
"fullname": "Loop removal"
},
"loopCondChange": {
"name": "Conditional expression modification",
"fullname": "Loop conditional expression modification"
},
"loopInitChange": {
"name": "Initialization field modification",
"fullname": "Loop initialization field modification"
}
},
"Method Call": {
"mcAdd": {
"name": "Addition",
"fullname": "Method call addition"
},
"mcRem": {
"name": "Removal",
"fullname": "Method call removal"
},
"mcRepl": {
"name": "Replacement",
"fullname": "Method call replacement"
},
"mcMove": {
"name": "Moving",
"fullname": "Method call moving"
},
"mcParAdd": {
"name": "Parameter addition",
"fullname": "Method call parameter addition"
},
"mcParRem": {
"name": "Parameter removal",
"fullname": "Method call parameter removal"
},
"mcParSwap": {
"name": "Parameter value swapping",
"fullname": "Method call parameter value swapping"
},
"mcParValChange": {
"name": "Parameter value modification",
"fullname": "Method call parameter value modification"
}
},
"Method Definition": {
"mdAdd": {
"name": "Addition",
"fullname": "Method definition addition"
},
"mdRem": {
"name": "Removal",
"fullname": "Method definition removal"
},
"mdRen": {
"name": "Renaming",
"fullname": "Method definition renaming"
},
"mdParAdd": {
"name": "Parameter addition",
"fullname": "Parameter addition in method definition"
},
"mdParRem": {
"name": "Parameter removal",
"fullname": "Parameter removal from method definition"
},
"mdParTyChange": {
"name": "Parameter type modification",
"fullname": "Parameter type modification in method definition"
},
"mdRetTyChange": {
"name": "Return type modification",
"fullname": "Method return type modification"
},
"mdModChange": {
"name": "Modifier change",
"fullname": "Method modifier change"
},
"mdOverride": {
"name": "Method overriding related change",
"fullname": "Method overriding addition or removal"
}
},
"Object Instantiation": {
"objInstAdd": {
"name": "Addition",
"fullname": "Object instantiation addition"
},
"objInstRem": {
"name": "Removal",
"fullname": "Object instantiation removal"
},
"objInstMod": {
"name": "Modification",
"fullname": "Object instantiation modification"
}
},
"Exception": {
"exTryCatchAdd": {
"name": "try-catch addition"
},
"exTryCatchRem": {
"name": "try-catch removal"
},
"exThrowsAdd": {
"name": "throw addition"
},
"exThrowsRem": {
"name": "throw removal"
}
},
"Return": {
"retBranchAdd": {
"name": "Addition",
"fullname": "Return statement addition"
},
"retRem": {
"name": "Removal",
"fullname": "Return statement removal"
},
"retExpChange": {
"name": "Expression modification",
"fullname": "Return expression modification"
}
},
"Variable": {
"varAdd": {
"name": "Addition",
"fullname": "Variable addition"
},
"varRem": {
"name": "Removal",
"fullname": "Variable removal"
},
"varTyChange": {
"name": "Type change",
"fullname": "Variable type change"
},
"varModChange": {
"name": "Modifier change",
"fullname": "Variable modifier change"
},
"varReplVar": {
"name": "Replacement by Another Variable",
"fullname": "Variable replacement by another variable"
},
"varReplMc": {
"name": "Replacement by Method Call",
"fullname": "Variable replacement by method call"
}
},
"Type": {
"tyAdd": {
"name": "Type addition",
"fullname": "Type addition"
},
"tyImpInterf": {
"name": "Type implemented interface modification",
"fullname": "Type implemented interface modification"
}
}
},
"Repair Patterns": {
"Conditional Block": {
"condBlockOthersAdd": {
"name": "Conditional block addition",
"fullname": "Conditional block addition"
},
"condBlockRetAdd": {
"name": "Addition with return statement",
"fullname": "Conditional block addition with return statement"
},
"condBlockExcAdd": {
"name": "Addition with exception throwing",
"fullname": "Conditional block addition with exception throwing"
},
"condBlockRem": {
"name": "Conditional block removal",
"fullname": "Conditional block removal"
}
},
"Expression Fix": {
"expLogicExpand": {
"name": "Logic expression expansion",
"fullname": "Logic expression expansion"
},
"expLogicReduce": {
"name": "Logic expression reduction",
"fullname": "Logic expression reduction"
},
"expLogicMod": {
"name": "Logic expression modification",
"fullname": "Logic expression modification"
},
"expArithMod": {
"name": "Arithmetic expression modification",
"fullname": "Arithmetic expression modification"
}
},
"Wraps-with/Unwraps-from": {
"wrapsIf": {
"name": "Wraps-with if statement",
"fullname": "Wraps-with if statement"
},
"wrapsIfElse": {
"name": "Wraps-with if-else statement",
"fullname": "Wraps-with if-else statement"
},
"wrapsElse": {
"name": "Wraps-with else statement",
"fullname": "Wraps-with else statement"
},
"wrapsTryCatch": {
"name": "Wraps-with try-catch block",
"fullname": "Wraps-with try-catch block"
},
"wrapsMethod": {
"name": "Wraps-with method call",
"fullname": "Wraps-with method call"
},
"wrapsLoop": {
"name": "Wraps-with loop",
"fullname": "Wraps-with loop"
},
"unwrapIfElse": {
"name": "Unwraps-from if-else statement"
},
"unwrapMethod": {
"name": "Unwraps-from method call"
},
"unwrapTryCatch": {
"name": "Unwraps-from try-catch block"
}
},
"Wrong Reference": {
"wrongVarRef": {
"name": "Variable",
"fullname": "Wrong Variable Reference"
},
"wrongMethodRef": {
"name": "Method",
"fullname": "Wrong Method Reference"
}
},
"Missing Null-Check": {
"missNullCheckP": {
"name": "Missing null check",
"fullname": "Missing null check addition"
},
"missNullCheckN": {
"name": "Missing non-null check",
"fullname": "Missing non-null check addition"
}
},
"Other": {
"singleLine": {
"name": "Single Line"
},
"copyPaste": {
"name": "Copy/Paste"
},
"constChange": {
"name": "Constant Change"
},
"codeMove": {
"name": "Code Moving"
},
"notClassified": {
"name": "Not classified"
}
}
},
"Runtime Information": {
"Automatic Repair": {
"rtAcs": {
"name": "ACS"
},
"rtCardumen": {
"name": "Cardumen"
},
"rtDeepRepair": {
"name": "DeepRepair"
},
"rtDynaMoth": {
"name": "DynaMoth"
},
"rtElixir": {
"name": "Elixir"
},
"rtGPFL": {
"name": "GPFL"
},
"rtHDRepair": {
"name": "HDRepair"
},
"rtGenProg": {
"name": "jGenProg"
},
"rtKali": {
"name": "jKali"
},
"rtNopol": {
"name": "Nopol"
},
"rtssFix": {
"name": "ssFix"
},
"rtJAID": {
"name": "JAID"
}
}
}
}
+29
View File
@@ -0,0 +1,29 @@
Name,GitRepo
libtiff, https://gitlab.com/libtiff/libtiff.git
FFmpeg, https://github.com/FFmpeg/FFmpeg.git
cmake, https://gitlab.kitware.com/cmake/cmake.git
redis, https://github.com/antirez/redis.git
ompi, https://github.com/open-mpi/ompi.git
gzip, https://git.savannah.gnu.org/git/gzip.git
libarchive, https://github.com/libarchive/libarchive
cairo, https://gitlab.freedesktop.org/cairo/cairo.git
vlc, https://github.com/videolan/vlc.git
freebsd, https://github.com/freebsd/freebsd
curl, https://github.com/curl/curl.git
tcl, https://github.com/tcltk/tcl.git
cpython, https://github.com/python/cpython.git
nginx, https://github.com/nginx/nginx.git
qemu, https://github.com/qemu/qemu.git
apr, https://github.com/apache/apr.git
tmux, https://github.com/tmux/tmux.git
php-src, https://github.com/php/php-src.git
gtk, https://gitlab.gnome.org/GNOME/gtk.git
gstreamer, https://gitlab.freedesktop.org/gstreamer/gstreamer.git
openssh-portable, https://github.com/openssh/openssh-portable.git
openssl, https://github.com/openssl/openssl.git
wireshark, https://github.com/wireshark/wireshark.git
git, https://github.com/git/git.git
linux, git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
gmp,https://github.com/ryepdx/gmp
lighttpd1.4,https://github.com/lighttpd/lighttpd1.4.git
lighttpd2,https://github.com/lighttpd/lighttpd2.git
1 Name GitRepo
2 libtiff https://gitlab.com/libtiff/libtiff.git
3 FFmpeg https://github.com/FFmpeg/FFmpeg.git
4 cmake https://gitlab.kitware.com/cmake/cmake.git
5 redis https://github.com/antirez/redis.git
6 ompi https://github.com/open-mpi/ompi.git
7 gzip https://git.savannah.gnu.org/git/gzip.git
8 libarchive https://github.com/libarchive/libarchive
9 cairo https://gitlab.freedesktop.org/cairo/cairo.git
10 vlc https://github.com/videolan/vlc.git
11 freebsd https://github.com/freebsd/freebsd
12 curl https://github.com/curl/curl.git
13 tcl https://github.com/tcltk/tcl.git
14 cpython https://github.com/python/cpython.git
15 nginx https://github.com/nginx/nginx.git
16 qemu https://github.com/qemu/qemu.git
17 apr https://github.com/apache/apr.git
18 tmux https://github.com/tmux/tmux.git
19 php-src https://github.com/php/php-src.git
20 gtk https://gitlab.gnome.org/GNOME/gtk.git
21 gstreamer https://gitlab.freedesktop.org/gstreamer/gstreamer.git
22 openssh-portable https://github.com/openssh/openssh-portable.git
23 openssl https://github.com/openssl/openssl.git
24 wireshark https://github.com/wireshark/wireshark.git
25 git https://github.com/git/git.git
26 linux git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
27 gmp https://github.com/ryepdx/gmp
28 lighttpd1.4 https://github.com/lighttpd/lighttpd1.4.git
29 lighttpd2 https://github.com/lighttpd/lighttpd2.git
+396
View File
@@ -0,0 +1,396 @@
project,bugId,repairActions,repairPatterns,repairTools,files,methods,classes,linesAdd,linesRem,linesMod,sizeInLines,chunks,spreadAllLines,spreadCodeOnly,mdAdd,mdRem,mdRen,mdParAdd,mdParRem,mdRetTyChange,mdParTyChange,mdModChange,mdOverride,mcAdd,mcRem,mcRepl,mcParSwap,mcParAdd,mcParRem,mcParValChange,mcMove,objInstAdd,objInstRem,objInstMod,varAdd,varRem,varTyChange,varModChange,varReplVar,varReplMc,exTryCatchAdd,exTryCatchRem,exThrowsAdd,exThrowsRem,condExpRed,condExpExpand,condExpMod,condBranIfAdd,condBranIfElseAdd,condBranElseAdd,condBranCaseAdd,condBranRem,assignAdd,assignRem,assignExpChange,loopAdd,loopRem,loopCondChange,loopInitChange,tyAdd,tyImpInterf,retExpChange,retBranchAdd,retRem,wrapsIf,wrapsIfElse,wrapsElse,wrapsTryCatch,wrapsMethod,wrapsLoop,unwrapIfElse,unwrapMethod,unwrapTryCatch,condBlockExcAdd,condBlockRetAdd,condBlockOthersAdd,condBlockRem,copyPaste,missNullCheckP,missNullCheckN,expLogicExpand,expLogicReduce,expLogicMod,expArithMod,codeMove,wrongVarRef,wrongMethodRef,singleLine,constChange,notClassified,blockRemove,fixAPI,wrongComp,missComp,others,initFix,size1,size2,size3,size4,size5,size6,size7,size8,size9,size10,size10+,Observations,rtAcs,rtKali,rtDynaMoth,rtGenProg,rtDeepRepair,rtCardumen,rtssFix,rtHDRepair,rtElixir,rtJAID,rtGPFL,rtNopol
Chart,1,1,2,7,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,Change Operator,,X,X,X,X,X,,,,X,X,
Chart,2,4,2,0,1,2,1,14,0,0,14,8,493,318,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Chart,3,1,0,6,1,1,1,2,0,0,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,x,,,,,,,,,,Missing initialization,,,,X,X,X,,,X,,X,X
Chart,4,1,2,3,1,1,1,2,0,0,2,2,8,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,,,X,,,,,,X
Chart,5,4,2,7,1,1,1,4,0,1,5,2,4,2,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,X,X,X,X,X,,,,,X,X
Chart,6,8,1,1,1,1,1,7,0,1,8,1,0,0,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,x,,,,,,x,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,X,,,,,,
Chart,7,3,3,4,1,1,1,0,0,2,2,2,1,1,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,X,X,X,,,,,X,
Chart,8,2,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,x,x,,,,,,,,,,x,Changes params passed to constructor.,,,,,,,,X,X,,,
Chart,9,1,2,6,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,X,,X,X,,,X,X,,X
Chart,10,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Chart,11,2,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,x,,,,x,,,,,,,,,,,Replaces var referencing of target object of a call.,,,,,,X,,,X,,,
Chart,12,3,3,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,x,,,,,,,,,,,"It involves a ""wrap with method"", but the real change is converting from a class attribute assignment to a ""set"" method call.",,,,,X,X,,,,,X,
Chart,13,6,3,7,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,x,,x,,x,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,x,,,,,,x,,x,x,,,,,,,,,,x,,,X,X,X,X,X,,,X,,X,
Chart,14,2,3,2,2,4,2,12,0,0,12,4,518,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,X,,,,X,,,,,,,
Chart,15,2,4,6,1,2,1,5,0,0,5,3,675,212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,x,,,,,,,,,,x,,,,x,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,X,X,X,X,X,,,,,X,
Chart,16,5,2,0,1,2,1,0,0,3,3,2,129,59,,,,,,,,,,x,,,,,,,,x,,,,,,,,x,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,x,,,x,,,,,,,,,Variable initialization in constructor + conditional expression change.,,,,,,,,,,,,
Chart,17,5,0,4,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,x,,,,,,,,,,Type change + computing change.,,,X,,,X,,,X,,,X
Chart,18,9,4,2,2,3,2,10,2,1,13,6,19,9,,,,,,,,,,x,x,,,,,,,x,,,x,,,,,,,,x,,,,,x,,,,x,x,,,,,,,,,,,x,x,,,,,,x,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Replaces return point by throw exception.,,,,,X,,,,,,X,
Chart,19,3,3,1,1,2,1,6,0,0,6,2,275,117,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,X,,,,,,,,,,,
Chart,20,2,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,x,x,,,,,,,,,,,Replaces params value passed to constructor.,,,,,,,X,,,,,
Chart,21,6,2,1,1,2,1,39,0,0,39,4,585,239,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,x,,,x,,,x,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,It seems that the functionality wasn't implemented before.,,,,,,,,,,,,X
Chart,22,11,4,0,1,3,1,30,1,2,33,7,145,72,,,,,,,,,,x,,,,,,x,,x,,,x,,,,x,,,,x,,,,,x,,,,x,x,,,x,,,,,,x,,,,,,,,,x,,,x,,x,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,Implicit null check after loop throught a vector and using a flag variable.,,,,,,,,,,,,
Chart,23,7,1,0,1,1,1,19,0,0,19,1,0,0,x,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,"I don't know if it makes sense to describe everything made in a method definition... specially in cases like that, where many lines of code with specific logic are commited.",,,,,,,,,,,,
Chart,24,2,3,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,x,,,,,x,,,,x,,,,,,,,,,,Replaces variable in an assignment expression.,,,,,,X,X,,,X,,
Chart,25,7,5,7,1,2,1,12,0,2,14,6,226,185,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,x,,,,,,,,x,,x,,,,,,,,,,x,,,x,x,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,X,X,X,X,X,,,,,X,X
Chart,26,1,2,6,1,1,1,2,0,0,2,2,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,X,X,,X,X,,,,X,,X
Closure,1,2,1,2,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,X,,,,,,,,,X
Closure,2,3,2,1,1,1,1,4,0,0,4,3,3,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,X
Closure,3,10,2,2,1,2,2,6,0,2,8,3,218,119,,,,x,,,,,,x,,x,,x,,,,,,,x,,,,,,,,,,,,x,x,,,x,,x,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,X,,,,,,,,,X
Closure,4,2,3,0,1,1,1,0,0,2,2,2,11,9,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,
Closure,5,3,1,3,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,X,,,,,,,X,,X
Closure,6,2,2,0,1,2,1,0,8,0,8,4,36,20,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,
Closure,7,5,2,2,1,1,1,4,0,1,5,3,2,0,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,X,,,,,,X
Closure,8,4,1,2,1,2,1,4,0,0,4,2,4,3,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,Adds a new condition in expression and a new method invocated by this condition.,,,X,,,,,,,,,X
Closure,9,5,1,0,1,2,2,1,0,1,2,2,64,43,,,,,,,,,,x,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,
Closure,10,2,2,4,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,,,,,,x,,,,X,,,X,,X,,,,X
Closure,11,3,1,0,1,1,1,0,2,0,2,1,0,0,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,
Closure,12,6,1,3,1,1,1,6,0,0,6,1,0,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,x,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,X,,,X,,,,,,X
Closure,13,1,2,2,1,1,1,1,1,0,2,2,1,1,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,x,,,,,,,,,,Only one line of code was moved.,,,X,,,X,,,,,,
Closure,14,2,3,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,x,,,,,,,,x,,,,,,,,,,,Parameter value change.,,,,,,,X,X,,,,X
Closure,15,3,1,1,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,X
Closure,16,8,1,2,1,3,2,6,0,3,9,5,296,217,,,,x,,,,,,x,,x,,x,,x,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,x,,,,,,X,,,,,,,,,X
Closure,17,5,2,2,1,1,1,4,0,1,5,2,1,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,Transform If structure in Wrap-with IfElse.,,,X,,,,,,,,,X
Closure,18,1,2,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,x,,,,,,,,,,x,,,,X,,,,,,,X,,X
Closure,19,1,1,1,1,1,1,2,0,0,2,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,,,,,,,,,
Closure,20,2,3,2,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,X,,,,,,,,,X
Closure,21,8,3,3,1,1,1,0,17,2,19,2,11,7,,,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,,,,x,,,,,,x,,x,,,x,,,,,,,x,,,,,,,,,,,,,x,,,,x,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,X,,,X,,,,,,X
Closure,22,8,4,3,1,1,1,0,24,2,26,5,12,8,,,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,,,,,,x,,,,x,,x,,,x,,,,,,,x,,,,,,,x,,,,,,x,,,x,,,x,,,,,,,,,,x,,,,,,,,,,,,,,x,"It seems that the old conditions were wrong, so a replacement was made. It simplifies too the implementation. It is similar to a Wrap-with-If operation plus a move of some conditionals.",,,X,,,X,,,,,,X
Closure,23,5,2,0,1,1,1,6,0,1,7,2,1,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,x,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,
Closure,24,4,2,0,1,1,1,2,1,2,5,4,15,9,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,x,,,,,,,x,,,,,,,"Again, a kind of Wrap-with-IfElse where some conditionals were missing.",,,,,,,,,,,,
Closure,25,5,0,0,1,1,1,2,4,0,6,4,22,18,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,
Closure,26,5,1,2,1,1,1,5,0,0,5,3,100,71,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,X,,,,,,,,,X
Closure,27,6,2,0,1,3,1,3,0,3,6,3,120,99,x,,,,,,,,,,,x,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,x,,,,,,,,,x,,,,,,A Node object is instantiated in the call. Adds new method and replace calls.,,,,,,,,,,,,
Closure,28,3,0,2,1,1,1,4,0,0,4,1,0,0,x,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,x,,,,,,,x,Overrides the addConstant method. Replaces method calls.,,,X,,,,,,,,,X
Closure,29,6,2,2,1,1,1,10,0,0,10,3,59,28,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,X,,,,,,,,,X
Closure,30,9,5,2,2,3,3,8,0,2,10,6,358,237,,,,,,,,,,,x,x,,x,,,,,,,x,,,,,,,,,,x,,,x,x,,,,x,,,,,,,,,,x,,,x,,,,,,,,,x,,,,x,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,x,x,Adds a new class attribute with its initialization.,,,X,,,,,,,,,X
Closure,31,1,2,4,1,1,1,0,1,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,X,,,,X,,,X,,X
Closure,32,8,2,0,1,1,1,15,3,0,18,6,56,38,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,x,x,,,x,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Closure,33,3,1,4,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,X,,,X,,,,X,,X
Closure,34,5,3,0,2,3,2,0,2,3,5,3,629,505,,,,,,,,,,x,,x,,x,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,x,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,
Closure,35,7,2,1,1,1,1,0,13,2,15,1,0,0,,,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,,,x,,,,,,,x,,x,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,x,Simplifies an existent null check. It's a kind of conditional block replacement.,,,,,,,,,,,,X
Closure,36,3,2,2,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,X,,,,,,,,,X
Closure,37,5,2,0,2,2,2,4,0,1,5,3,3,0,,,,,,,,,,x,,x,,x,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,x,Replaces method call by overloaded method with extra parameters.,,,,,,,,,,,,
Closure,38,1,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"Parentesis added has no effect on expression evaluation, so a conditional expression expansion was considered only.",,,,,,,,,,,,X
Closure,39,5,3,0,1,1,1,0,0,3,3,3,12,9,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,x,,,,,,,,,"If-else implicit in ""exp?a:b"" construct",,,,,,,,,,,,
Closure,40,2,2,5,1,1,1,0,2,1,3,2,2,2,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,"Removed a null check, maintaining the branch code.",,,X,,,X,X,,,X,,X
Closure,41,4,2,0,1,2,1,9,0,0,9,2,191,138,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,
Closure,42,3,1,0,1,1,1,7,0,0,7,2,2,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,
Closure,43,6,4,0,1,2,1,17,0,0,17,4,161,108,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,,x,,,x,,,,,,,,,,x,,,,,,,,,,x,,,x,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Closure,44,2,1,0,1,1,1,2,0,0,2,2,5,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,
Closure,45,8,3,3,1,2,2,4,0,2,6,4,171,107,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,x,x,x,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,x,,,,,,,,,x,,,,,,x,,,,,,,,,X,,,X,,,,,,X
Closure,46,9,1,2,1,1,1,0,16,0,16,1,0,0,,x,,,,,,,x,,x,,,,,,,,x,,,x,,,,,,,,,,,,,,,,x,,x,,,x,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,x,Removes Overriding method. Adds and initializes local variable.,,,X,,,X,,,,,,
Closure,47,5,1,0,2,2,2,5,0,3,8,3,3,2,,,,,,,,,,,,,,,,x,,,,x,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,
Closure,48,6,2,1,1,1,1,3,0,4,7,2,1,0,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,x,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,X,,,,,,,,,
Closure,49,10,2,2,1,3,1,14,8,0,22,8,81,53,,,,,,,,,,x,x,,,,,,,,,,x,x,,,,,,,,,,,,,,,x,x,x,x,,x,x,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,X,,,,,,,,,X
Closure,50,3,3,2,1,1,1,5,0,1,6,3,13,9,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,X,,,,,,,,,X
Closure,51,2,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,X,,,,
Closure,52,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Closure,53,4,1,0,1,1,1,4,0,0,4,2,19,13,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Closure,54,9,5,0,2,3,2,10,1,2,13,5,31,18,,,,,,,,,,x,x,,,,,,,,,,x,,,,x,,,,,,x,,,x,x,,,,x,,x,,,,,,,,,,,x,,,,,,,,,,x,,,,x,,x,,,,x,,,,,,,,x,,,,,,,,,,,,,,One of the chunks have a kind of Wrap-with-IfElse done with the replacement of existent conditional block.,,,,,,,,,,,,
Closure,55,2,2,3,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,x,,,,,,,,,x,,,,X,,,X,,,,,,X
Closure,56,3,1,0,1,1,1,4,0,0,4,2,1,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Closure,57,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"Altought there is a null check in the conditional expression, the expression is expanded with an extra condition not related to null-check.",,,,,,,,,,,,
Closure,58,2,1,0,1,1,1,4,0,0,4,2,2,2,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Closure,59,2,2,1,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,X,,,,,,,,,
Closure,60,4,2,2,1,2,1,5,0,0,5,3,29,17,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,x,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,X,,,,,,,,,X
Closure,61,5,2,2,1,1,1,6,0,0,6,1,0,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,X,,,,,,,,,X
Closure,62,1,2,4,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,"Just changed the operator in ""if"" condition",,,X,,,,,X,,X,,X
Closure,63,1,2,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,Same as bug 62,,,X,,,,,,,X,,X
Closure,64,5,1,0,1,3,1,0,0,4,4,4,38,25,,,,x,,,,,,,,x,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,New parameters are added in three method calls (call to overloaded methods). A logic expression passed to a method call is changed.,,,,,,,,,,,,
Closure,65,1,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Closure,66,2,1,2,1,1,1,2,0,0,2,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,,,,,,,,,X
Closure,67,2,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,X,,,,,,,,,X
Closure,68,1,3,0,1,3,1,3,1,0,4,4,892,554,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,x,,,,,,,x,An assignment was moved outside a branch.,,,,,,,,,,,,
Closure,69,2,1,0,1,1,1,7,0,0,7,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,x,,,,,,,,,,,,,
Closure,70,1,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,x,,,,,,,,,,x,,,,,,,,X,,,X,,
Closure,71,3,3,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,The null-check is done in a boolean expression assigned to a variable and not to a conditional test.,,,,,,,,,,,,
Closure,72,3,1,2,2,2,2,2,0,1,3,2,0,0,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,Instantiates an anonymous object and make a method call on it.,,,X,,,,,,,,,X
Closure,73,1,2,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,X,X,,X,,
Closure,74,9,3,0,1,2,1,13,0,2,15,2,165,136,x,,,,,,,,,x,,x,,,,,,,,,x,,,,,,,,,,,,,x,,,x,,x,,x,,,,,,,,x,,,,,,,,,,,,x,,,x,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Closure,75,5,3,2,1,2,1,3,0,1,4,3,62,46,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,x,x,,,,,,,,,,,,x,,,,,,,,,,,x,,,x,,,,,,,,,,,x,,,,,,,,,,,X,,,,,,,,,X
Closure,76,9,4,2,1,2,1,37,6,0,43,11,73,48,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,x,x,x,,,x,x,,,,,,,,,,x,,,,,,,,x,,,,x,x,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,X,,,,,,,,,X
Closure,77,2,2,0,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,
Closure,78,1,1,2,1,1,1,0,2,0,2,2,6,6,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,Removes error invocation call.,,,X,,,,,,,,,X
Closure,79,3,1,0,2,2,2,1,0,1,2,2,0,0,,,,,,,,,,x,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,x,,,,,,,,,,Calls overloaded method with extra parameters.,,,,,,,,,,,,
Closure,80,1,1,0,1,2,1,2,0,0,2,2,1648,989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,"These blocks are inserted as extra switch clauses. Should be a ""Missing Condition"", ""Missing Block"" or both?",,,,,,,,,,,,
Closure,81,4,1,0,1,1,1,7,0,0,7,1,0,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,
Closure,82,2,2,0,1,1,1,2,0,1,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Closure,83,2,1,0,1,1,1,3,0,1,4,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,"The existent code was splitted in declaration of var ""param"" out of the wrap and assignment, with Wrap-with-TryCatch.",,,,,,,,,,,,
Closure,84,7,2,0,1,3,1,27,0,0,27,3,465,377,x,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,x,,x,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,
Closure,85,9,4,0,1,2,1,7,13,1,21,4,29,22,,,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,x,x,x,,x,,,,,,,,x,,,,,,,,x,,,,x,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Closure,86,1,3,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,x,x,,,,,,,,x,,,,,,,,,,x,,,,,,,,X,,,,,
Closure,87,8,1,0,1,1,1,12,0,1,13,4,10,0,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,,x,,,,,,,,,x,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,
Closure,88,5,1,0,1,1,1,6,0,0,6,2,3,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,
Closure,89,3,3,0,2,2,2,3,0,1,4,2,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,x,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,
Closure,90,4,2,0,2,2,2,3,0,1,4,2,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,
Closure,91,5,2,0,1,1,1,9,0,0,9,1,0,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,x,,,,,,,,,,,,,
Closure,92,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Closure,93,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,,,,,,,Same change/commit as #92.,,,,,,,,,,,,
Closure,94,3,2,0,1,1,1,19,0,0,19,3,8,6,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,"Many ""case"" conditions were added, sharing the same consequent action. Equivalent to ""if ( x || y || z || ... ) then do this"". These blocks are inserted as extra switch clauses. Should be a ""Missing Condition"", ""Missing Block"" or both?",,,,,,,,,,,,
Closure,95,4,1,0,1,1,1,7,0,0,7,2,3,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,
Closure,96,3,3,0,1,1,1,3,0,1,4,3,3,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Closure,97,3,2,0,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,
Closure,98,6,3,0,1,2,2,19,0,0,19,5,201,127,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,x,,,x,,,,,,,x,,,,,,,,,,,,x,x,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,New class attributes were added.,,,,,,,,,,,,
Closure,99,6,3,0,1,1,1,5,0,1,6,4,39,26,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,x,,x,,,,x,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,x,,,,,,,x,,,,,x,"Changed condition in expression, adds an extra computing in line 131.",,,,,,,,,,,,
Closure,100,6,2,0,1,1,1,7,0,1,8,2,47,34,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,x,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,
Closure,101,2,1,0,1,1,1,1,3,0,4,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,
Closure,102,1,2,0,1,1,1,1,1,0,2,2,5,5,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,
Closure,103,5,4,0,2,2,2,8,0,0,8,3,3,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,x,x,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,
Closure,104,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,A Null-Check was removed and replaced by another condition.,,,,,,,,,,,,
Closure,105,7,3,0,1,1,1,2,0,5,7,5,19,16,,,,,,,,,,,x,,,,,,,x,x,,,,,,,,,,,,,,x,,x,,,,x,,x,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,x,,,,,,,,,,,,,x,,,,,,,x,,,,,Moves the instantiation of StringBuilder to another place.,,,,,,,,,,,,
Closure,106,4,3,0,2,2,2,4,2,0,6,3,1,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,x,,,,,,,,x,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,
Closure,107,1,1,0,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,x,,,,,,,,,,x,,,,,,,,,,,,,
Closure,108,4,1,0,1,3,1,3,0,1,4,4,322,230,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,x,,,,x,,,,,,,,Added new class attribute and its initialization. An existent conditional expression with Null-Check was expanded with another condition.,,,,,,,,,,,,
Closure,109,5,3,0,1,1,1,4,0,1,5,1,0,0,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,x,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,
Closure,110,12,7,0,2,2,2,21,0,4,25,12,47,22,,,,,,,,,,x,x,,,,,,,x,,,x,,,,,,,,x,,,x,x,x,x,,,,x,,x,,,,,,,x,,,,x,,,,,,,,x,,x,,,x,x,x,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,
Closure,111,3,2,1,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,X
Closure,112,6,1,0,1,1,1,6,0,3,9,1,0,0,x,,,,,,,,x,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,Adds an inline interface implementation for a parameter of type Predicate on filterKeys method call.,,,,,,,,,,,,
Closure,113,2,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"Again, an existent condition with Null-Check was expanded with other condition.",,,,,,,,,,,,X
Closure,114,2,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,X
Closure,115,5,1,1,1,1,1,0,11,0,11,2,25,15,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,X
Closure,116,5,2,2,1,2,1,12,0,0,12,2,26,15,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,Strange... what is removed in 115 is added again in 116.,,,X,,,,,,,,,X
Closure,117,9,1,0,1,1,1,12,12,0,24,3,31,20,,,,,,,,,,,,,,,,,x,,,,x,x,,,,,,,,,,,,x,,,,x,x,x,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,Move a block of code.,,,,,,,,,,,,
Closure,118,2,1,0,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Closure,119,1,2,1,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"""Case"" Added to switch... Should be considered a ""missing block"" too?",,,,,,,,,,,,X
Closure,120,3,1,1,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,X
Closure,121,2,2,1,1,1,1,2,0,1,3,2,3,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,X
Closure,122,5,1,0,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,
Closure,123,3,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,x,,,x,x,,,,,,,,,,,Changes value in assignment from constant to method call.,,,,,,,,,,,,
Closure,124,2,1,2,1,1,1,2,0,0,2,2,1,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,X,,,,,,,,,X
Closure,125,2,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,x,"Again, conditional expression with Null-Check was expanded with new condition.",,,,,,,,,,X,,
Closure,126,4,1,5,1,1,1,0,4,0,4,1,0,0,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,X,,,,X,X,,X,,X
Closure,127,5,3,2,1,2,1,9,0,1,10,2,6,5,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,x,,x,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,X,,,,,,,,,X
Closure,128,3,2,0,1,1,1,3,0,1,4,2,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,x,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Closure,129,3,0,2,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,x,,,,,,,,,Adds a loop to iterate over child of nodes.,,,X,,,,,,,,,X
Closure,130,1,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,x,,,,X,,,,,,,,,X
Closure,131,2,2,2,1,1,1,1,0,1,2,2,5,4,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,,,,,,,,,X
Closure,132,2,2,2,1,1,1,2,0,1,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,X,,,,,,,,,X
Closure,133,1,1,3,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,x,,,,,,,,,,,It seems that the variable is reseted by method.,,,X,,,X,,,,,,X
Lang,1,6,3,0,1,1,1,9,0,2,11,3,3,3,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,x,,,x,,,,x,,,x,,,,,,,,,,,,,,,,,,,,x,,x,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,
Lang,2,4,1,0,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Lang,3,1,2,0,1,1,1,4,0,0,4,4,12,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,
Lang,4,5,1,0,1,1,1,0,0,4,4,4,43,27,,,,,,,,,,x,,,,,,,,,,x,,,x,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,x,,,,x,,,,,,,,Type change with adjust in related calls/operations.,,,,,,,,,,,,
Lang,5,6,3,0,1,1,1,21,0,0,21,2,31,31,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,,,,x,,,,x,,,,,,,,,,x,,,x,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,
Lang,6,2,3,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,X,X,X,,,
Lang,7,6,2,4,1,2,1,3,3,0,6,3,270,167,,,,,,,,,,x,x,,,,,,,x,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,"In one of the chunks, removes a conditional block with return.",X,,,,X,X,,,,,X,
Lang,8,5,0,0,1,2,1,1,2,0,3,3,34,14,,,,,,,,,,x,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,x,,,x,,,,,,,,,Transformed a class attribute in local var.,,,,,,,,,,,,
Lang,9,4,1,0,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Lang,10,4,1,2,1,1,1,0,9,0,9,2,2,2,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,X,X,,,,,,
Lang,11,4,2,0,1,1,1,4,0,0,4,1,0,0,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Lang,12,5,3,0,1,1,1,7,0,0,7,3,8,7,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,x,,,,x,,,,,,,,,,,,,x,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,
Lang,13,8,3,0,1,2,1,19,0,0,19,4,30,12,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,x,,x,,,,,,x,,,,x,,,,,,,,,,x,,,,,x,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,
Lang,14,3,1,1,1,1,1,3,0,0,3,2,1,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,X,,,,,,
Lang,15,4,2,0,1,1,1,0,0,4,4,2,453,226,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,x,,,,,x,,,,,,,x,Change local var type.,,,,,,,,,,,,
Lang,16,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Lang,17,6,2,0,1,1,1,2,8,1,11,6,11,9,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,x,x,x,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,x,x,x,,,,,,,,,,,,"Unwraps input.length() from ""Character.codePointCount()"" method. Unwraps ""for loop"" from else branch. Unwraps ""pos += ..."" from if-else branch.",,,,,,,,,,,,
Lang,18,3,2,0,1,1,1,2,2,1,5,2,1,1,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,An existent if-else structure is removed and a new one is placed in an action that resembles a wrap-with replacement. An aditional wrap-with-IfElse is present in IfElse-CondExp form.,,,,,,,,,,,,
Lang,19,9,5,0,1,1,1,6,0,3,9,5,38,29,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,x,x,x,,,,x,,,,,x,,,,x,,,,x,,,,,,,,,x,,,,,,,,x,x,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,
Lang,20,4,2,1,1,2,1,0,0,2,2,2,84,27,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,"Null-Check is removed from ""buf"" initialization.",,,,,X,,,,,,,
Lang,21,3,4,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,x,,x,x,,,,,,,,x,,,,,,,,,,,,,,,,,,X,,,,,
Lang,22,5,3,3,1,1,1,6,0,1,7,2,1,0,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,x,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,X,X,,,,,X,
Lang,23,6,1,0,1,2,1,31,0,0,31,3,196,105,x,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,Implements equals and hascode to work with hash structures of Collections,,,,,,,,,,,,
Lang,24,1,2,6,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,X,,,,X,X,,,X,X,X,
Lang,25,1,1,0,1,1,1,0,0,27,27,1,0,0,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,x,Changes keys in a vector of type key-value.,,,,,,,,,,,,
Lang,26,1,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,x,x,,,,,,,,,,,Adds a new parameter to constructor call (call overloaded constructor),,,,,,,,,X,,,
Lang,27,4,2,2,1,1,1,3,0,1,4,2,9,9,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,X,,,,,,
Lang,28,3,1,0,1,1,1,6,0,0,6,2,1,1,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,
Lang,29,1,1,0,1,1,1,0,0,1,1,1,0,0,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,x,Changes return type of method.,,,,,,,,,,,,
Lang,30,11,7,0,1,6,1,38,0,5,43,20,305,102,,,,,,,x,,,x,x,,,,,,,,,,x,,,,,,,,,,x,x,x,x,x,,,,x,,,,,,,,,,x,,x,x,,,,,,,,,x,x,,x,,,x,,x,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,
Lang,31,4,2,0,1,1,1,8,0,0,8,4,7,5,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,Partially the same as Lang 30,,,,,,,,,,,,
Lang,32,7,4,0,1,3,1,14,5,3,22,4,427,74,,x,,,,,,,x,x,,,,,,,,,,x,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,x,x,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,Applies null check using synchronized block with object lock (HashCodeBuilder.class),,,,,,,,,,,,
Lang,33,1,3,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,Wrap-with applied with IfElse-Expression,,,,,,,X,,X,X,,
Lang,34,3,3,0,1,2,1,0,0,2,2,2,15,3,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,x,x,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,
Lang,35,4,0,1,1,2,1,0,0,2,2,2,278,62,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,"Changes return of a null object to throw an Exception. The only statement of an existent ""else block"" is replaced by an exception throw.",X,,,,,,,,,,,
Lang,36,3,2,0,1,1,1,8,0,1,9,2,896,471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,
Lang,37,7,2,0,1,1,1,8,0,0,8,3,2,1,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,x,,x,,,,,x,,,,,x,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,
Lang,38,1,1,4,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,x,,x,,,,,,,,,,,,,,,,X,,,,X,X,X,
Lang,39,1,2,5,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,x,,,,,,X,X,,,X,X,X,
Lang,40,7,1,0,1,1,1,7,0,1,8,1,0,0,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,x,,,,,,x,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,
Lang,41,8,2,0,1,2,1,19,0,2,21,8,58,23,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,,,,,,x,,x,,,,,x,,,x,,,,,,x,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,Existent condittional expression with null-check is expanded.,,,,,,,,,,,,
Lang,42,6,2,0,1,1,1,5,0,2,7,2,2,2,,,,,,,,,,x,,x,,,,,,,,,,,x,,,,,,,,,,,,x,,,,x,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,
Lang,43,1,1,3,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,x,,,,,,,,,,,,,,,,,,X,X,X,,,
Lang,44,4,1,3,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,X,,,,,,X,,,X
Lang,45,3,1,1,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,X,,
Lang,46,5,1,0,1,6,1,3,0,7,10,9,152,82,,,,x,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,
Lang,47,2,3,0,1,2,1,6,0,0,6,2,44,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,x,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,
Lang,48,3,1,0,1,1,1,4,0,0,4,2,2,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Lang,49,4,2,0,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,
Lang,50,8,4,0,1,2,1,2,6,4,12,6,179,68,,,,,,,,,,x,x,,,,,,,x,x,,,,,,,,,,,,,,x,,,,,x,x,x,,,,,,,,,,,,,,,,,x,,,,,,x,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,"Replaces some existent Null-Chek, inverting postive by negative.",,,,,,,,,,,,
Lang,51,1,1,4,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"Adds a return statement that does the role of an ""else"" branch.",,,X,,,,,,X,X,,X
Lang,52,2,1,0,1,1,1,4,0,0,4,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,
Lang,53,0,3,2,1,1,1,2,2,0,4,4,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,x,,,,,,,,,,x,,,,,x,,,,,,,,,,,X,,,,,,,,,X
Lang,54,4,1,0,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,
Lang,55,1,1,2,1,1,1,2,0,0,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,,,,,,,X,,
Lang,56,4,0,0,1,1,1,4,0,2,6,3,880,425,x,,,,,,,,x,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,x,,,,,,Changes types modifiers and overrides method related to Serialization.,,,,,,,,,,,,
Lang,57,3,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,x,,,,,,,,,,,Changes direct acces of an object to method call.,,,,,,,,X,X,,,
Lang,58,1,1,3,1,1,1,0,1,1,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,,,,,,X,,,X
Lang,59,2,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,x,,,,x,,,,,,,,,,,,,,,,,,X,,X,,,
Lang,60,2,2,0,1,2,1,0,0,2,2,2,56,21,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,
Lang,61,2,3,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,x,,,,,x,,,,x,,,,,,,,,,,Changes/fix computing of a variable.,,,,,,,,,,X,,
Lang,62,2,2,0,1,1,1,8,0,0,8,4,76,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,x,"Added a ""break"" in ""case"" branch.",,,,,,,,,,,,
Lang,63,8,1,1,1,2,1,2,19,1,22,4,118,91,,x,,,,,,,,x,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,x,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,x,x,,,,,,,,,,,,,,,,,,X,,,,,,,,,
Lang,64,9,3,0,1,2,1,21,0,0,21,5,12,2,x,,,,,,,,,x,,,,,,,,x,,,x,,,,,,x,,x,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,x,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,
Lang,65,5,3,0,1,1,1,30,0,0,30,8,86,50,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,x,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Math,1,2,2,0,2,2,2,6,0,0,6,2,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,x,,,,,,,,,,,,,
Math,2,1,2,8,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,x,,,,,,,,,,,Apply a casting to returned value of an expression.,,X,X,X,X,X,,,X,,X,X
Math,3,2,1,1,1,1,1,3,0,0,3,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,X,,,,,,,,,,,
Math,4,2,3,2,2,2,2,6,0,0,6,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,x,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,"Almost a copy, the only difference is in involved variable.",X,,,,,,,,,,,X
Math,5,1,3,9,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,x,x,,,,,,,,x,,,,,,,,,,,,X,,X,X,X,X,,X,X,X,X,
Math,6,8,4,2,7,7,7,2,4,12,18,17,327,240,,,,,,,,,,x,,,,,,x,,,,x,,x,,,,x,,,,,,,x,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,x,,,x,,,,x,,,x,,,,,,,,,,,,A parameter value passed through the constructor during object instantiation is changed. A local variable is removed and expressions to increment it are replaced by equivalent method call.,,,,,X,X,,,,,,
Math,7,6,3,3,1,1,1,5,6,3,14,4,18,11,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,x,x,,x,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,Changes involving adding and removing of many loops.,,,,X,X,,,,,,,X
Math,8,3,0,5,1,1,1,0,0,2,2,2,5,4,,,,,,x,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,Ajust the object initialization to reflect type changed.,,X,,X,X,X,,,,,X,
Math,9,4,1,0,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,x,,,,,,,,,,Replaced constructor by overloaded version. Changes object attribute value by direct assignment.,,,,,,,,,,,,
Math,10,2,1,0,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,
Math,11,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,
Math,12,3,0,0,1,0,1,3,0,1,4,3,11,3,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,imports and implements java.io.Serializable.,,,,,,,,,,,,
Math,13,7,1,0,1,1,1,9,0,0,9,2,2,2,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,,,,,,,,,x,,,,x,,,x,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,Contains the patch of Math-13,,,,,,,,,,,,
Math,14,10,1,0,2,2,2,9,3,1,13,3,2,2,,,,,,,,,,x,x,,,,,,,x,,,x,,,,,,,,,,,,,,x,,,,x,x,,x,x,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,
Math,15,3,1,0,1,1,1,1,0,1,2,2,1228,742,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,
Math,16,5,2,0,1,2,1,19,0,2,21,11,377,235,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,x,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,
Math,17,3,1,0,1,1,1,4,0,0,4,2,1,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,x,,,,,,,,,,,,,
Math,18,5,2,2,1,3,1,2,0,4,6,5,60,38,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,X,X,,,,,,
Math,19,7,1,0,1,1,1,13,0,0,13,1,0,0,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,,,x,,,,,x,,,,,x,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,
Math,20,4,3,4,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,x,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,x,,,x,,,,,,,,,,"Adds a new return output alternative through conditional expression of the form ""exp?a:b"". Something to think: ""Is it a change in return expression, a return branch adding or both?"". For now, it is considered as both.",,,,,X,X,,,X,,X,
Math,21,6,3,0,1,1,1,4,1,9,14,6,50,31,,,,,,,,,,,,,,,,,,,,,x,x,,,x,,,,,,,,,x,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,x,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,
Math,22,1,1,2,2,2,2,0,0,2,2,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,x,,,,,,X,,,X,,,,
Math,23,5,1,0,1,1,1,7,0,2,9,5,124,104,,,,,,,,,,x,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,Call overloaded method with extra params. New variable is added with its initialization.,,,,,,,,,,,,
Math,24,2,2,3,1,1,1,0,0,2,2,2,36,34,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,,X,,,,,,,X
Math,25,3,1,1,1,1,1,3,0,0,3,2,2,0,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,X,,,,,,,,,,,
Math,26,2,2,0,1,1,1,0,0,2,2,2,27,21,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,
Math,27,2,3,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Math,28,2,1,7,1,1,1,4,0,0,4,4,33,23,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,X,X,X,X,X,,,,,X,X
Math,29,10,1,0,1,2,1,12,1,3,16,2,21,12,,,,,,,,,,x,x,,,,,,,,,,x,x,,,,,,,,,,,,x,x,,,,x,x,,x,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,x,x,,,,,,,,,,,,,Changed a while loop to a for lor loop.,,,,,,,,,,,,
Math,30,1,1,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,X,,,X,,,
Math,31,11,4,0,1,1,1,1,21,12,34,4,23,17,,,,,,,,,,x,x,,,,,,,,x,,x,x,,,x,,,,,x,,,,,,,,x,x,x,,,x,,,,,,,,,,,,,,,,,,,x,x,,,,,,,x,,x,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,
Math,32,2,3,6,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,X,X,,X,X,,,X,X,,
Math,33,2,3,5,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,x,,,,,,,,,x,,,,,,,,,,x,A variable used in a method call is replaced by another one.,,,X,,,X,X,,X,,,X
Math,34,2,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,x,,,x,,,,,,,,,,x,A direct class attribute access was replaced by a method call that gives indirect access to the object.,,,,,,,,X,X,,,
Math,35,3,3,1,1,2,1,0,0,2,2,2,13,3,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,Similar to Math-34,X,,,,,,,,,,,
Math,36,4,2,0,1,2,1,12,0,0,12,4,49,17,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,"The change is almost the same in two different places. The only difference between changes is the use of the call ""doubleValue()"" in place of ""floatValue()"" in correspondent methods.",,,,,,,,,,,,
Math,37,4,3,0,1,2,1,12,0,2,14,4,46,11,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,x,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,x,"The changes are almost the same in two different places... same structure, but with variattions in the parameters/arguments.",,,,,,,,,,,,
Math,38,3,2,1,1,1,1,0,0,4,4,3,89,70,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,x,,,x,,,,x,,,,,,,,Removes Exception Thrown. The throws line is commented in code... maybe the change isn't a final one.,,,,,,,,,,,,X
Math,39,3,1,1,1,1,1,9,0,0,9,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,x,,,,,,,,,,,,,X
Math,40,3,2,7,1,1,1,6,0,2,8,2,2,1,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,x,,,,,,,,,,,x,,,,,,X,X,X,X,X,,,,,X,X
Math,41,4,2,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,x,x,,,,,,,,,,,The changes were made only inside the for loop.,,,X,,,X,,,,,,X
Math,42,1,2,2,1,1,1,2,0,1,3,2,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,X,,,,,,,,,X
Math,43,1,1,0,1,1,1,0,0,3,3,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Math,44,5,1,4,1,1,1,6,1,0,7,3,62,39,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,x,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,The variable and assignment adding are part of the for loop.,,,X,,X,,,,,,X,X
Math,45,5,1,0,1,1,1,5,0,0,5,1,0,0,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,x,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,
Math,46,2,2,2,1,1,1,0,0,2,2,2,36,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,"The removed if-else condition is in the form ""exp?a:b"".",,,X,,,X,,,,,,
Math,47,5,3,0,1,1,1,2,0,3,5,4,209,80,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,x,,,,x,,,,,,,,,x,,,,x,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,x,,,,,,,"The ""WrapWith"" condition is in the form ""exp?a:b"". The added variable is a class attribute.",,,,,,,,,,,,
Math,48,3,1,0,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Math,49,2,2,7,1,4,1,0,0,4,4,4,35,29,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,Changed the target of a iterator access.,,X,X,X,X,X,,,,,X,X
Math,50,3,1,11,1,1,1,0,4,0,4,1,0,0,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,X,X,X,X,X,X,X,X,X,X,X
Math,51,7,1,0,1,1,1,9,0,0,9,3,4,1,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,,,x,,,,,x,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,Adds an exception throw in default clause of switch-case.,,,,,,,,,,,,
Math,52,4,1,0,1,1,1,1,0,3,4,3,13,7,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,x,,,,,,,,New variable is added with its initialization.,,,,,,,,,,,,
Math,53,2,1,6,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,X,X,,X,X,,X,X,
Math,54,7,2,0,1,1,1,6,0,1,7,2,2046,1332,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,x,x,x,,,,x,,,,,,,,,,x,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,
Math,55,8,2,0,1,1,1,17,0,1,18,5,14,0,,,,,,,,,,x,,,,,,x,,,,x,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,x,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,
Math,56,4,1,2,1,1,1,0,6,1,7,1,0,0,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,x,,,,,,,,,,x,,,,,Replaces a wrong and more complex calculation by the correct and simpler one.,,,,,X,,,,,,X,
Math,57,1,1,6,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,Just changed the declared type of a primitive variable.,,,X,,X,X,X,,X,,,X
Math,58,4,2,6,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,x,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,,,,,,,Call overloaded method without one parameter.,,,X,,X,X,X,,X,,,X
Math,59,2,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,X,,,
Math,60,8,3,3,1,1,1,2,9,1,12,2,2,2,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,x,,,,x,x,,,x,,,,,,,,,,,x,x,,,,,,,,,x,,x,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,Unwraps try-catch.,,,,X,X,X,,,,,,
Math,61,2,0,1,1,1,1,0,0,2,2,2,71,18,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,x,,,,,,,,,,Replaces Exception Thrown. Changed the type of exception thrown. Changed the imported type.,X,,,,,,,,,,,
Math,62,13,2,1,1,1,1,0,1,3,4,2,13,9,,,,,,,,,,x,x,x,,x,,x,,,,,x,x,,,,,,,,,,,,,x,,,x,x,x,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,x,,,,,,,x,,,,,,,,"Changes the way to compute ""optima[i]"", changing params for call to ""optimize"". Removed if-branch is in the form ""exp?a:b"".",,,,,,X,,,,,,
Math,63,3,2,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,X,X,,,X,,,
Math,64,15,7,1,1,1,1,19,5,3,27,13,180,131,,,,,,,,,,x,x,,,,,x,x,x,x,,x,,,,x,,,,,,,,,x,,,,x,x,,x,x,,,,,,,x,x,,,,,,,,,,,x,x,x,,,x,,,,x,x,x,,,,,x,,x,,,,,,,,,,,,,,,Moved instantiation of object of type VectorialPointValuePair to another place (lines ahead).,,,,,X,,,,,,,
Math,65,7,2,0,1,1,1,0,5,2,7,2,12,5,,,,,,,,,,x,,,,,,x,,,,,,x,,,,x,,,,,,,,,,,,,,x,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,
Math,66,19,4,0,1,4,1,0,11,11,22,12,178,129,,x,,,x,,,,x,x,x,x,,,x,x,,,x,,x,x,,,,x,,,,x,,,x,,x,,,,x,,,,,x,,,,x,,x,,,,,,,,,,,,,,,,,,,x,,,x,x,,x,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,
Math,67,2,1,0,1,2,1,0,0,2,2,2,4,2,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,A direct access to a vector was added in place of a value returned from a call to an object method. The change was similar in structure in two different places.,,,,,,,,,,,,
Math,68,9,3,0,1,1,1,10,0,2,12,9,253,160,,,,,,,,,,x,,,,,,,,x,x,,x,,,,,,,,,,,,,x,x,,,,x,,,,,,,,,x,x,,,x,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,New objects were instantiated. Objects instantiated before were removed too (line 419).,,,,,,,,,,,,
Math,69,2,2,3,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,x,,,,x,,,,,,,,,,,Fix assignment operation.,,,X,,,X,,,,,,X
Math,70,3,2,7,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,,,,,,,Call overloaded method without one parameter.,,,,X,X,X,X,X,X,,X,
Math,71,2,1,4,2,2,2,7,0,0,7,2,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,Three lines equal lines are added in two different places. Just line 302 is different.,,,X,X,X,,,,,,X,
Math,72,2,1,0,1,1,1,0,0,2,2,2,11,7,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,x,,,,,,,,,,"Similar changes in two different places, the same melhod is targeted, the same argument is changed, only the new values applied are different.",,,,,,,,,,,,
Math,73,3,1,6,1,1,1,4,0,0,4,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,X,X,X,,,X,,X,X
Math,74,5,0,2,1,1,1,3,0,4,7,3,2,2,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,x,,,,,,,x,,,,,A vector/object was instantiated.The way to initialize values was changed.,,,,,X,X,,,,,,
Math,75,2,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,X,,,
Math,76,7,5,0,1,1,1,6,0,8,14,12,95,67,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,x,,,,x,x,x,,,x,,,,,,,,x,,,,,,,,,,,,x,,,,,x,x,,x,,,,,,,,,,,,,,,,,,,,,,The structure of the changes are similar and applied in two different methods.,,,,,,,,,,,,
Math,77,8,1,1,2,2,2,0,9,1,10,2,0,0,,x,,,,,,,x,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,x,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,x,,,,,,,,,,,,,x,,"Fix a assignment. Removes a method (aparently, unrelated changes).",,,,,X,,,,,,,
Math,78,6,2,7,1,1,1,11,0,0,11,3,8,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,x,,,,,x,,,,,x,,,x,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,X,X,X,X,X,,,,,X,X
Math,79,1,0,2,1,1,1,0,0,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,X,X,,,,,
Math,80,1,2,9,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,x,,x,,,,,,,,,,,Fix expression in assignment (added parathesis).,,X,X,X,X,X,,,X,X,X,X
Math,81,4,3,6,1,3,1,1,0,3,4,3,938,643,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,x,,,,,x,,,,,,x,,,,,,,,Fix/updates assignment to var upperSpectra.,,X,,X,X,X,,,,,X,X
Math,82,1,2,10,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,Changes operator in condition.,X,X,X,X,X,X,,X,X,X,X,
Math,83,3,2,0,1,2,1,0,0,3,3,3,51,34,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,"The added ""WrapWith"" uses ""exp?a:b"" format.",,,,,,,,,,,,
Math,84,6,1,5,1,1,1,9,0,0,9,3,30,15,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,x,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,X,,X,X,X,,,,,X,
Math,85,1,2,11,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,Changes operator in condition.,X,X,X,X,X,X,,X,X,X,X,X
Math,86,6,1,0,1,1,1,3,3,0,6,2,20,14,,,,,,,,,,,,,,,,,,x,x,,,,,,,,,,x,x,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,The condition to throw the exception is moved from one place to another.,,,,,,,,,,,,
Math,87,2,1,2,1,1,1,0,2,2,4,3,2,2,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,X,,,,,,,,,X
Math,88,8,2,3,1,1,1,5,6,0,11,4,7,5,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,,,,,,,,,x,,,x,x,x,,,x,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,X,,,X,,,,,,X
Math,89,3,1,1,1,1,1,4,0,0,4,2,1,1,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,X,,,,,,,,,,,
Math,90,2,0,1,1,2,1,3,0,0,3,2,11,0,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,Added a new overloaded method reusing part of the implementation of an existing one. The old method just call the new one.,X,,,,,,,,,,,
Math,91,3,1,0,1,1,1,0,0,2,2,1,0,0,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,x,,x,,,,,,,,,,The value of a class attribute is accessed in place of a method to do the assignment.,,,,,,,,,,,,
Math,92,15,6,0,1,2,1,48,5,1,54,12,92,19,,,,,,,,,,x,x,,,,,x,,x,x,,x,,,,,,,,x,x,,,,x,x,,,x,x,,x,x,,,,,,,x,,,,,,,,,,,x,x,x,x,,,,,,,x,,,x,,,,x,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,
Math,93,7,3,1,1,2,1,8,0,2,10,3,50,15,,,,,,,,,,x,,,,,,,,x,,,,x,,,,,,,x,,,,x,x,,,,,,,,,,,,,,,x,,,,,,,,,,,x,x,,,,,,,,x,,,,,,,,,,x,x,,,,,,,,,,,,x,,,X,,,,,,,,,,,
Math,94,1,2,1,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,X,,,,,
Math,95,2,1,4,1,1,1,2,0,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,X,,X,,X,,,,,X,
Math,96,2,3,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,Changes logical expression in assignment,,,,,,,,,,,,
Math,97,4,3,2,1,1,1,14,0,2,16,5,9,5,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,x,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,X,,,X,,,,,,
Math,98,1,2,1,2,2,2,0,0,2,2,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,x,,x,,,,,,,,,,Changes dimension of two vectors.,,,,,X,,,,,,,
Math,99,3,1,1,1,2,1,8,0,0,8,2,171,68,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,Instantiates a vector object as part of the exception creation.,X,,,,,,,,,,,
Math,100,2,2,0,1,2,1,0,0,3,3,3,39,26,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,Apply the same replace of methods in three different places.,,,,,,,,,,,,
Math,101,2,2,2,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,X,,,X,,,,,,
Math,102,6,2,0,1,1,1,17,0,0,17,3,5,5,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,,x,,,x,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Math,103,3,3,0,1,1,1,10,0,0,10,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,x,,,,,x,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,
Math,104,1,2,2,1,0,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,,,,x,x,,,,,,,,,,,,,,,,,X,,,X,,,
Math,105,2,2,4,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,X,,,X,,,,X,,X
Math,106,3,2,0,1,1,1,8,0,0,8,4,36,18,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,Only one variable is different between the two blocks of code in patch.,,,,,,,,,,,,
Mockito,1,6,1,0,1,1,1,11,0,1,12,1,0,0,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,x,,,,x,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Mockito,2,4,1,0,1,2,1,7,0,0,7,3,25,13,x,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,import and instantiate a new Reporter object. It appears as an validation object/procedure.,,,,,,,,,,,,
Mockito,3,9,1,0,1,2,1,15,1,2,18,3,13,12,x,,,,,,,,,x,x,,,,,,,x,,,x,,,,,,,,,,,,,,x,,,,x,,,x,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,
Mockito,4,3,4,0,1,3,1,3,0,2,5,3,251,223,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,x,,,,,,x,,,x,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,
Mockito,5,1,1,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,Change parameter type in catch command.,,,,,,,,,,,,
Mockito,6,3,3,0,1,20,1,0,0,20,20,20,320,41,,,,,,,,,,,,,,,,x,,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,Instantiates specific objects in place of call do Any.ANY,,,,,,,,,,,,
Mockito,7,2,1,0,1,1,1,1,0,0,1,1,0,0,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,x,,,,,,,,,,,Instantiates and initializes an TypeVariable vector.,,,,,,,,,,,,
Mockito,8,1,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"Replaced and ""else"" with an ""else if""",,,,,,,,,,,,
Mockito,9,4,1,0,1,1,1,5,0,0,5,3,28,5,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,
Mockito,10,7,0,0,1,4,1,5,0,5,10,7,81,36,x,,,x,,,,,,,,x,,x,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,x,,"Changes signature of existent methods, adding new params.",,,,,,,,,,,,
Mockito,11,7,2,0,1,2,1,8,0,1,9,3,5,4,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,,x,,,,,,,,,x,x,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,
Mockito,12,3,1,0,1,1,1,4,0,0,4,3,2,1,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,
Mockito,13,3,2,0,1,1,1,2,0,1,3,3,5,3,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Mockito,14,4,2,0,2,2,2,4,0,1,5,5,109,80,,,,,,,,,,x,,,,,,x,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,"An existing parameter (""mode"") was wrapped by a constructor call, instantiating MockAwareVerificationMode object",,,,,,,,,,,,
Mockito,15,3,1,0,1,1,1,3,0,0,3,3,22,11,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,Instantiated a BeanPropertySetter object,,,,,,,,,,,,
Mockito,16,5,1,0,2,3,2,2,1,3,6,5,73,6,,x,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,Merged two overloaded method definitions.,,,,,,,,,,,,
Mockito,17,6,2,0,2,3,2,7,0,2,9,6,80,61,,,,,,,,,,x,x,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,
Mockito,18,3,1,0,1,1,1,2,0,0,2,1,0,0,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,Returns instantiated ArrayList<Object>,,,,,,,,,,,,
Mockito,19,11,2,0,5,5,5,18,0,8,26,11,41,20,x,,,x,,,,,,x,,x,,x,,,,x,,,,,,,,,,,,,,,,x,x,,,,,,,x,,,,,,x,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adds new parameter to existent method. Adjust code to reflect this.,,,,,,,,,,,,
Mockito,20,7,1,0,1,1,1,1,0,2,3,3,12,11,,,,,,,,,,x,,x,,,,,,x,,,x,,,,x,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,Instantiates an InstantiatonProvider object,,,,,,,,,,,,
Mockito,21,14,2,0,1,3,1,16,0,4,20,5,15,10,x,,x,x,,,,x,,x,,x,,,,,,,,,x,,,,,,,,x,,,,,x,,,,,x,,,x,,,,,,x,x,x,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,"Apply ""static"" modifier to withParams method",,,,,,,,,,,,
Mockito,22,2,1,0,1,1,1,2,0,1,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Mockito,23,11,2,0,1,5,2,15,0,3,18,8,77,48,x,,,,,,,,,x,,,,,,,,x,x,,,,x,x,,,,,,,,,,x,,,,,x,x,,,,,,x,,x,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Instantiates MockitoCore and ReturnsEmptyValues objects. Replaces instantiation of Answer to SerializabelAnswer object.,,,,,,,,,,,,
Mockito,24,3,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"If-Else implicit in ""exp?x:y"" format",,,,,,,,,,,,
Mockito,25,13,0,0,1,6,1,25,2,4,31,10,71,29,x,,,x,x,,,,x,x,x,x,,x,,x,,x,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,
Mockito,26,1,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,x,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Mockito,27,5,0,0,1,1,1,0,1,1,2,1,0,0,,,,,,,,,,x,x,,,,,,,,x,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,
Mockito,28,3,2,0,1,1,1,1,0,1,2,1,0,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,x,,,,,,,,,,Changes method signature adding new parameter.,,,,,,,,,,,,
Mockito,29,1,3,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,"Wrapping implicit in ""exp?x:y"" format",,,X,,,,,,,,,X
Mockito,30,4,0,0,2,2,2,1,0,2,3,3,3,3,,,,x,,,,,,,,x,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,x,,,,,,,,,"Adds new parameter to method signature, ajust code.",,,,,,,,,,,,
Mockito,31,4,0,0,1,1,1,2,0,1,3,2,51,25,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,
Mockito,32,2,1,0,1,1,1,4,0,1,5,2,30,25,,,,,,,,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,
Mockito,33,7,3,0,1,1,1,11,0,1,12,2,1,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,x,,,,,,,x,x,,,,,,,,,,,x,x,,,,x,,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,
Mockito,34,2,2,0,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,
Mockito,35,3,2,0,1,3,1,0,0,3,3,3,152,31,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,
Mockito,36,3,1,0,1,1,1,4,0,0,4,2,191,146,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,Instantiates an Reporter object,,,,,,,,,,,,
Mockito,37,3,1,0,1,2,1,8,0,0,8,2,2,1,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,
Mockito,38,1,3,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,X,,,,,,,,,X
Time,1,7,4,0,2,2,2,9,3,1,13,3,4,4,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,x,,,x,,,x,,,,,,,,,,,,x,,,,,,,,,,x,,x,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Time,2,5,4,0,2,2,2,6,0,1,7,3,230,108,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,x,,,x,,,,,,,,,,,,,,,x,,,,,,,,,,,,x,x,,,x,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,
Time,3,1,2,0,1,10,1,20,0,0,20,20,242,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The patches makes a type of ""bypass"" null check, where the logic is applyed only if the value is different of null.",,,,,,,,,,,,
Time,4,4,2,7,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,x,,,x,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,x,x,,,,,,,,,,,The swap was made on a constructor call.,,X,X,X,,X,,,X,,X,X
Time,5,12,3,0,1,1,1,6,0,6,12,2,1,1,,,,,,,,,,x,x,,,,,x,,x,,,x,,,,x,,,,x,,,,x,x,,,,,x,x,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,x,,,,,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,
Time,6,7,3,0,1,3,2,26,0,0,26,3,805,556,,,,,,,,,,x,,,,,,,,x,,,x,,,,,,,,x,,,,,x,x,,,,x,,,,,,,,,,,,,,,,,,,,,x,,x,,x,,,,,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,,
Time,7,4,0,3,1,1,1,1,1,0,2,2,2,2,,,,,,,,,,,x,x,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,x,,x,,,,,,,,,,Move assignment of var and changed assignment expression.,,,X,,,X,,,,,,X
Time,8,6,5,0,1,1,1,3,0,2,5,3,6,6,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,,x,x,,,,,,,x,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,x,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,
Time,9,5,2,1,1,2,1,6,0,3,9,5,22,15,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,X,,,,,,
Time,10,3,1,0,1,1,1,1,0,1,2,2,52,25,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,x,,,,,,,,,,Adds new variable and its initialization.,,,,,,,,,,,,
Time,11,5,0,6,1,1,1,1,0,4,5,1,0,0,x,,,,,,,,x,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,x,,,,,,,Changed a static initialization for a method inline implementation.,,X,X,X,,X,,,X,,,X
Time,12,8,3,2,2,2,2,12,0,2,14,8,70,26,,,,,,,,,,x,,,,,,x,,x,,,x,,,,,,,,,,,,,x,x,,,,x,,,,,,,,,,x,,,x,,,,,,,,,x,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,The if/else added is implicit in the passed parameter format (exp?x:y) for the LocalDate constructor call.,,,,,,,,,,,X,X
Time,13,6,3,0,1,1,1,4,0,1,5,3,43,37,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,,x,,x,,,,,,,,,,,x,,,,,,,,,,x,,,,,,,,x,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,
Time,14,5,1,2,1,1,1,5,0,0,5,2,1,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,X,,,,,,,,,X
Time,15,3,1,2,1,1,1,3,0,0,3,1,0,0,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,X,,,,,,,,X,,,
Time,16,3,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,x,,,,,,x,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,x,,,,,,,,x,x,,,,,,,,,,,Changes parameter for constructor call.,,,X,,,,,,,,,X
Time,17,11,4,1,1,1,1,13,0,5,18,5,8,2,,,,,,,,,,x,x,,,,,,,,,,x,x,,,,,,,,,,,x,x,x,,,,x,,x,,,,,,,,x,x,,,,,,,,x,,,x,,,,,,,,x,x,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,,,X,,,,,,
Time,18,5,2,2,1,1,1,12,0,0,12,2,3,3,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,x,,,,,x,,,,,x,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,X,,,,,,X
Time,19,1,2,2,1,1,1,0,0,1,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,,X,,,,X
Time,20,7,4,0,1,1,1,6,0,2,8,3,4,4,,,,,,,,,,x,x,,,,,,,,,,x,,,,,,,,,,,,,x,,,,,x,,,,,,,,,,x,x,,,,,,,,,,,x,x,,,x,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,
Time,21,8,4,0,1,1,1,12,2,4,18,5,10,6,,,,,,,,,,x,x,,,,,x,,,,,x,,,,,,,,,,,,x,x,,,,,x,,,x,,,,,,,,,x,,,,,,,,,,,x,,,,x,,,,,,x,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,
Time,22,4,0,0,1,1,1,5,0,1,6,2,1,0,,,,,,,,,,x,,x,,,,,,,,,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,x,,,x,,,,,,x,,,,,,,,,,,,,,,,,,
Time,23,3,1,0,1,1,1,5,4,4,13,8,17,17,,,,,,,,,,x,x,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,x,,,,,,,,,,,,Changes entries in a key-value map.,,,,,,,,,,,,
Time,24,4,1,0,1,1,1,5,0,0,5,1,0,0,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,x,,,x,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,x,,,,,,,,,,,,,,,,,,,
Time,25,6,2,0,1,1,1,9,0,0,9,1,0,0,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,x,x,,,,x,,,,,,,,,,x,,,,,,,,,,,,x,x,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,x,,,,,,,,,,,,,,,
Time,26,3,2,0,1,7,1,0,0,7,7,7,98,84,,,,,,,,,,,,x,,x,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,x,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,
Time,27,1,2,0,1,1,1,2,0,0,2,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,x,,,,,,,,,,,,,,,,,,,,,,
1 project bugId repairActions repairPatterns repairTools files methods classes linesAdd linesRem linesMod sizeInLines chunks spreadAllLines spreadCodeOnly mdAdd mdRem mdRen mdParAdd mdParRem mdRetTyChange mdParTyChange mdModChange mdOverride mcAdd mcRem mcRepl mcParSwap mcParAdd mcParRem mcParValChange mcMove objInstAdd objInstRem objInstMod varAdd varRem varTyChange varModChange varReplVar varReplMc exTryCatchAdd exTryCatchRem exThrowsAdd exThrowsRem condExpRed condExpExpand condExpMod condBranIfAdd condBranIfElseAdd condBranElseAdd condBranCaseAdd condBranRem assignAdd assignRem assignExpChange loopAdd loopRem loopCondChange loopInitChange tyAdd tyImpInterf retExpChange retBranchAdd retRem wrapsIf wrapsIfElse wrapsElse wrapsTryCatch wrapsMethod wrapsLoop unwrapIfElse unwrapMethod unwrapTryCatch condBlockExcAdd condBlockRetAdd condBlockOthersAdd condBlockRem copyPaste missNullCheckP missNullCheckN expLogicExpand expLogicReduce expLogicMod expArithMod codeMove wrongVarRef wrongMethodRef singleLine constChange notClassified blockRemove fixAPI wrongComp missComp others initFix size1 size2 size3 size4 size5 size6 size7 size8 size9 size10 size10+ Observations rtAcs rtKali rtDynaMoth rtGenProg rtDeepRepair rtCardumen rtssFix rtHDRepair rtElixir rtJAID rtGPFL rtNopol
2 Chart 1 1 2 7 1 1 1 0 0 1 1 1 0 0 x x x x Change Operator X X X X X X X
3 Chart 2 4 2 0 1 2 1 14 0 0 14 8 493 318 x x x x x x x
4 Chart 3 1 0 6 1 1 1 2 0 0 2 1 0 0 x x x x Missing initialization X X X X X X
5 Chart 4 1 2 3 1 1 1 2 0 0 2 2 8 8 x x x x X X X
6 Chart 5 4 2 7 1 1 1 4 0 1 5 2 4 2 x x x x x x x X X X X X X X
7 Chart 6 8 1 1 1 1 1 7 0 1 8 1 0 0 x x x x x x x x x x x X
8 Chart 7 3 3 4 1 1 1 0 0 2 2 2 1 1 x x x x x x x X X X X
9 Chart 8 2 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x x x Changes params passed to constructor. X X
10 Chart 9 1 2 6 1 1 1 0 0 1 1 1 0 0 x x x x X X X X X X
11 Chart 10 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x
12 Chart 11 2 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x x Replaces var referencing of target object of a call. X X
13 Chart 12 3 3 3 1 1 1 0 0 1 1 1 0 0 x x x x x x x It involves a "wrap with method", but the real change is converting from a class attribute assignment to a "set" method call. X X X
14 Chart 13 6 3 7 1 1 1 0 0 1 1 1 0 0 x x x x x x x x x x x x x X X X X X X X
15 Chart 14 2 3 2 2 4 2 12 0 0 12 4 518 243 x x x x x x X X
16 Chart 15 2 4 6 1 2 1 5 0 0 5 3 675 212 x x x x x x x x X X X X X X
17 Chart 16 5 2 0 1 2 1 0 0 3 3 2 129 59 x x x x x x x x x Variable initialization in constructor + conditional expression change.
18 Chart 17 5 0 4 1 1 1 1 0 1 2 1 0 0 x x x x x x x x Type change + computing change. X X X X
19 Chart 18 9 4 2 2 3 2 10 2 1 13 6 19 9 x x x x x x x x x x x x x Replaces return point by throw exception. X X
20 Chart 19 3 3 1 1 2 1 6 0 0 6 2 275 117 x x x x x x x X
21 Chart 20 2 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x x Replaces params value passed to constructor. X
22 Chart 21 6 2 1 1 2 1 39 0 0 39 4 585 239 x x x x x x x x x It seems that the functionality wasn't implemented before. X
23 Chart 22 11 4 0 1 3 1 30 1 2 33 7 145 72 x x x x x x x x x x x x x x x x Implicit null check after loop throught a vector and using a flag variable.
24 Chart 23 7 1 0 1 1 1 19 0 0 19 1 0 0 x x x x x x x x x I don't know if it makes sense to describe everything made in a method definition... specially in cases like that, where many lines of code with specific logic are commited.
25 Chart 24 2 3 3 1 1 1 0 0 1 1 1 0 0 x x x x x x x Replaces variable in an assignment expression. X X X
26 Chart 25 7 5 7 1 2 1 12 0 2 14 6 226 185 x x x x x x x x x x x x x X X X X X X X
27 Chart 26 1 2 6 1 1 1 2 0 0 2 2 5 5 x x x x X X X X X X
28 Closure 1 2 1 2 1 1 1 3 0 0 3 1 0 0 x x x x X X
29 Closure 2 3 2 1 1 1 1 4 0 0 4 3 3 1 x x x x x x X
30 Closure 3 10 2 2 1 2 2 6 0 2 8 3 218 119 x x x x x x x x x x x x x X X
31 Closure 4 2 3 0 1 1 1 0 0 2 2 2 11 9 x x x x x x
32 Closure 5 3 1 3 1 1 1 3 0 0 3 1 0 0 x x x x x X X X
33 Closure 6 2 2 0 1 2 1 0 8 0 8 4 36 20 x x x x x x
34 Closure 7 5 2 2 1 1 1 4 0 1 5 3 2 0 x x x x x x x x x X X
35 Closure 8 4 1 2 1 2 1 4 0 0 4 2 4 3 x x x x x x Adds a new condition in expression and a new method invocated by this condition. X X
36 Closure 9 5 1 0 1 2 2 1 0 1 2 2 64 43 x x x x x x x x
37 Closure 10 2 2 4 1 1 1 0 0 1 1 1 0 0 x x x x x x X X X X
38 Closure 11 3 1 0 1 1 1 0 2 0 2 1 0 0 x x x x x
39 Closure 12 6 1 3 1 1 1 6 0 0 6 1 0 0 x x x x x x x x x X X X
40 Closure 13 1 2 2 1 1 1 1 1 0 2 2 1 1 x x x x Only one line of code was moved. X X
41 Closure 14 2 3 3 1 1 1 0 0 1 1 1 0 0 x x x x x x Parameter value change. X X X
42 Closure 15 3 1 1 1 1 1 3 0 0 3 1 0 0 x x x x x X
43 Closure 16 8 1 2 1 3 2 6 0 3 9 5 296 217 x x x x x x x x x x x x X X
44 Closure 17 5 2 2 1 1 1 4 0 1 5 2 1 0 x x x x x x x x Transform If structure in Wrap-with IfElse. X X
45 Closure 18 1 2 3 1 1 1 0 0 1 1 1 0 0 x x x x x X X X
46 Closure 19 1 1 1 1 1 1 2 0 0 2 2 1 0 x x x X
47 Closure 20 2 3 2 1 1 1 1 0 1 2 1 0 0 x x x x x x X X
48 Closure 21 8 3 3 1 1 1 0 17 2 19 2 11 7 x x x x x x x x x x x x X X X
49 Closure 22 8 4 3 1 1 1 0 24 2 26 5 12 8 x x x x x x x x x x x x x x It seems that the old conditions were wrong, so a replacement was made. It simplifies too the implementation. It is similar to a Wrap-with-If operation plus a move of some conditionals. X X X
50 Closure 23 5 2 0 1 1 1 6 0 1 7 2 1 1 x x x x x x x x
51 Closure 24 4 2 0 1 1 1 2 1 2 5 4 15 9 x x x x x x x x Again, a kind of Wrap-with-IfElse where some conditionals were missing.
52 Closure 25 5 0 0 1 1 1 2 4 0 6 4 22 18 x x x x x x x x x
53 Closure 26 5 1 2 1 1 1 5 0 0 5 3 100 71 x x x x x x x x X X
54 Closure 27 6 2 0 1 3 1 3 0 3 6 3 120 99 x x x x x x x x x x A Node object is instantiated in the call. Adds new method and replace calls.
55 Closure 28 3 0 2 1 1 1 4 0 0 4 1 0 0 x x x x x x x Overrides the addConstant method. Replaces method calls. X X
56 Closure 29 6 2 2 1 1 1 10 0 0 10 3 59 28 x x x x x x x x x x X X
57 Closure 30 9 5 2 2 3 3 8 0 2 10 6 358 237 x x x x x x x x x x x x x x x x x Adds a new class attribute with its initialization. X X
58 Closure 31 1 2 4 1 1 1 0 1 0 1 1 0 0 x x x x X X X X
59 Closure 32 8 2 0 1 1 1 15 3 0 18 6 56 38 x x x x x x x x x x x
60 Closure 33 3 1 4 1 1 1 3 0 0 3 1 0 0 x x x x x X X X X
61 Closure 34 5 3 0 2 3 2 0 2 3 5 3 629 505 x x x x x x x x x x
62 Closure 35 7 2 1 1 1 1 0 13 2 15 1 0 0 x x x x x x x x x x x Simplifies an existent null check. It's a kind of conditional block replacement. X
63 Closure 36 3 2 2 1 1 1 3 0 0 3 1 0 0 x x x x x x X X
64 Closure 37 5 2 0 2 2 2 4 0 1 5 3 3 0 x x x x x x x x x Replaces method call by overloaded method with extra parameters.
65 Closure 38 1 2 1 1 1 1 0 0 1 1 1 0 0 x x x x Parentesis added has no effect on expression evaluation, so a conditional expression expansion was considered only. X
66 Closure 39 5 3 0 1 1 1 0 0 3 3 3 12 9 x x x x x x x x x If-else implicit in "exp?a:b" construct
67 Closure 40 2 2 5 1 1 1 0 2 1 3 2 2 2 x x x x x Removed a null check, maintaining the branch code. X X X X X
68 Closure 41 4 2 0 1 2 1 9 0 0 9 2 191 138 x x x x x x x x
69 Closure 42 3 1 0 1 1 1 7 0 0 7 2 2 0 x x x x x x
70 Closure 43 6 4 0 1 2 1 17 0 0 17 4 161 108 x x x x x x x x x x x
71 Closure 44 2 1 0 1 1 1 2 0 0 2 2 5 0 x x x x
72 Closure 45 8 3 3 1 2 2 4 0 2 6 4 171 107 x x x x x x x x x x x x x X X X
73 Closure 46 9 1 2 1 1 1 0 16 0 16 1 0 0 x x x x x x x x x x x x x Removes Overriding method. Adds and initializes local variable. X X
74 Closure 47 5 1 0 2 2 2 5 0 3 8 3 3 2 x x x x x x x x
75 Closure 48 6 2 1 1 1 1 3 0 4 7 2 1 0 x x x x x x x x x X
76 Closure 49 10 2 2 1 3 1 14 8 0 22 8 81 53 x x x x x x x x x x x x x x X X
77 Closure 50 3 3 2 1 1 1 5 0 1 6 3 13 9 x x x x x x x X X
78 Closure 51 2 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x X
79 Closure 52 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x
80 Closure 53 4 1 0 1 1 1 4 0 0 4 2 19 13 x x x x x x
81 Closure 54 9 5 0 2 3 2 10 1 2 13 5 31 18 x x x x x x x x x x x x x x x One of the chunks have a kind of Wrap-with-IfElse done with the replacement of existent conditional block.
82 Closure 55 2 2 3 1 1 1 1 0 1 2 1 0 0 x x x x x x X X X
83 Closure 56 3 1 0 1 1 1 4 0 0 4 2 1 1 x x x x x
84 Closure 57 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x Altought there is a null check in the conditional expression, the expression is expanded with an extra condition not related to null-check.
85 Closure 58 2 1 0 1 1 1 4 0 0 4 2 2 2 x x x x
86 Closure 59 2 2 1 1 1 1 1 0 1 2 1 0 0 x x x x x X
87 Closure 60 4 2 2 1 2 1 5 0 0 5 3 29 17 x x x x x x x X X
88 Closure 61 5 2 2 1 1 1 6 0 0 6 1 0 0 x x x x x x x x X X
89 Closure 62 1 2 4 1 1 1 0 0 1 1 1 0 0 x x x x Just changed the operator in "if" condition X X X X
90 Closure 63 1 2 3 1 1 1 0 0 1 1 1 0 0 x x x x Same as bug 62 X X X
91 Closure 64 5 1 0 1 3 1 0 0 4 4 4 38 25 x x x x x x x New parameters are added in three method calls (call to overloaded methods). A logic expression passed to a method call is changed.
92 Closure 65 1 2 0 1 1 1 0 0 1 1 1 0 0 x x x x
93 Closure 66 2 1 2 1 1 1 2 0 0 2 2 1 0 x x x x X X
94 Closure 67 2 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x X X
95 Closure 68 1 3 0 1 3 1 3 1 0 4 4 892 554 x x x x x x x An assignment was moved outside a branch.
96 Closure 69 2 1 0 1 1 1 7 0 0 7 1 0 0 x x x x x x
97 Closure 70 1 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x X X
98 Closure 71 3 3 0 1 1 1 0 0 1 1 1 0 0 x x x x x x x The null-check is done in a boolean expression assigned to a variable and not to a conditional test.
99 Closure 72 3 1 2 2 2 2 2 0 1 3 2 0 0 x x x x x x Instantiates an anonymous object and make a method call on it. X X
100 Closure 73 1 2 3 1 1 1 0 0 1 1 1 0 0 x x x x X X X
101 Closure 74 9 3 0 1 2 1 13 0 2 15 2 165 136 x x x x x x x x x x x x x
102 Closure 75 5 3 2 1 2 1 3 0 1 4 3 62 46 x x x x x x x x x X X
103 Closure 76 9 4 2 1 2 1 37 6 0 43 11 73 48 x x x x x x x x x x x x x x x X X
104 Closure 77 2 2 0 1 1 1 1 0 0 1 1 0 0 x x x x x x
105 Closure 78 1 1 2 1 1 1 0 2 0 2 2 6 6 x x x Removes error invocation call. X X
106 Closure 79 3 1 0 2 2 2 1 0 1 2 2 0 0 x x x x x x Calls overloaded method with extra parameters.
107 Closure 80 1 1 0 1 2 1 2 0 0 2 2 1648 989 x x x These blocks are inserted as extra switch clauses. Should be a "Missing Condition", "Missing Block" or both?
108 Closure 81 4 1 0 1 1 1 7 0 0 7 1 0 0 x x x x x x
109 Closure 82 2 2 0 1 1 1 2 0 1 3 1 0 0 x x x x x
110 Closure 83 2 1 0 1 1 1 3 0 1 4 1 0 0 x x x x The existent code was splitted in declaration of var "param" out of the wrap and assignment, with Wrap-with-TryCatch.
111 Closure 84 7 2 0 1 3 1 27 0 0 27 3 465 377 x x x x x x x x x x x
112 Closure 85 9 4 0 1 2 1 7 13 1 21 4 29 22 x x x x x x x x x x x x x
113 Closure 86 1 3 1 1 1 1 0 0 1 1 1 0 0 x x x x x x X
114 Closure 87 8 1 0 1 1 1 12 0 1 13 4 10 0 x x x x x x x x x x
115 Closure 88 5 1 0 1 1 1 6 0 0 6 2 3 0 x x x x x x x
116 Closure 89 3 3 0 2 2 2 3 0 1 4 2 0 0 x x x x x x x x
117 Closure 90 4 2 0 2 2 2 3 0 1 4 2 0 0 x x x x x x x x
118 Closure 91 5 2 0 1 1 1 9 0 0 9 1 0 0 x x x x x x x x x x
119 Closure 92 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x
120 Closure 93 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x Same change/commit as #92.
121 Closure 94 3 2 0 1 1 1 19 0 0 19 3 8 6 x x x x x Many "case" conditions were added, sharing the same consequent action. Equivalent to "if ( x || y || z || ... ) then do this". These blocks are inserted as extra switch clauses. Should be a "Missing Condition", "Missing Block" or both?
122 Closure 95 4 1 0 1 1 1 7 0 0 7 2 3 0 x x x x x x x
123 Closure 96 3 3 0 1 1 1 3 0 1 4 3 3 1 x x x x x x x
124 Closure 97 3 2 0 1 1 1 1 0 1 2 1 0 0 x x x x x x x
125 Closure 98 6 3 0 1 2 2 19 0 0 19 5 201 127 x x x x x x x x x x New class attributes were added.
126 Closure 99 6 3 0 1 1 1 5 0 1 6 4 39 26 x x x x x x x x x x x x Changed condition in expression, adds an extra computing in line 131.
127 Closure 100 6 2 0 1 1 1 7 0 1 8 2 47 34 x x x x x x x x x x
128 Closure 101 2 1 0 1 1 1 1 3 0 4 2 1 0 x x x x x
129 Closure 102 1 2 0 1 1 1 1 1 0 2 2 5 5 x x x x
130 Closure 103 5 4 0 2 2 2 8 0 0 8 3 3 0 x x x x x x x x x x
131 Closure 104 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x A Null-Check was removed and replaced by another condition.
132 Closure 105 7 3 0 1 1 1 2 0 5 7 5 19 16 x x x x x x x x x x x x Moves the instantiation of StringBuilder to another place.
133 Closure 106 4 3 0 2 2 2 4 2 0 6 3 1 1 x x x x x x x x x
134 Closure 107 1 1 0 1 1 1 1 0 0 1 1 0 0 x x x x x
135 Closure 108 4 1 0 1 3 1 3 0 1 4 4 322 230 x x x x x x x x Added new class attribute and its initialization. An existent conditional expression with Null-Check was expanded with another condition.
136 Closure 109 5 3 0 1 1 1 4 0 1 5 1 0 0 x x x x x x x x x x
137 Closure 110 12 7 0 2 2 2 21 0 4 25 12 47 22 x x x x x x x x x x x x x x x x x x x x x
138 Closure 111 3 2 1 1 1 1 1 0 1 2 1 0 0 x x x x x x X
139 Closure 112 6 1 0 1 1 1 6 0 3 9 1 0 0 x x x x x x x x Adds an inline interface implementation for a parameter of type Predicate on filterKeys method call.
140 Closure 113 2 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x Again, an existent condition with Null-Check was expanded with other condition. X
141 Closure 114 2 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x X
142 Closure 115 5 1 1 1 1 1 0 11 0 11 2 25 15 x x x x x x x X
143 Closure 116 5 2 2 1 2 1 12 0 0 12 2 26 15 x x x x x x x x Strange... what is removed in 115 is added again in 116. X X
144 Closure 117 9 1 0 1 1 1 12 12 0 24 3 31 20 x x x x x x x x x x Move a block of code.
145 Closure 118 2 1 0 1 1 1 3 0 0 3 1 0 0 x x x x
146 Closure 119 1 2 1 1 1 1 1 0 0 1 1 0 0 x x x x "Case" Added to switch... Should be considered a "missing block" too? X
147 Closure 120 3 1 1 1 1 1 3 0 0 3 1 0 0 x x x x x X
148 Closure 121 2 2 1 1 1 1 2 0 1 3 2 3 0 x x x x x X
149 Closure 122 5 1 0 1 1 1 1 0 1 2 1 0 0 x x x x x x x x
150 Closure 123 3 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x x x x Changes value in assignment from constant to method call.
151 Closure 124 2 1 2 1 1 1 2 0 0 2 2 1 1 x x x x x X X
152 Closure 125 2 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x x Again, conditional expression with Null-Check was expanded with new condition. X
153 Closure 126 4 1 5 1 1 1 0 4 0 4 1 0 0 x x x x x x X X X X X
154 Closure 127 5 3 2 1 2 1 9 0 1 10 2 6 5 x x x x x x x x x x X X
155 Closure 128 3 2 0 1 1 1 3 0 1 4 2 6 6 x x x x x x
156 Closure 129 3 0 2 1 1 1 3 0 0 3 1 0 0 x x x x x x Adds a loop to iterate over child of nodes. X X
157 Closure 130 1 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x X X
158 Closure 131 2 2 2 1 1 1 1 0 1 2 2 5 4 x x x x x X X
159 Closure 132 2 2 2 1 1 1 2 0 1 3 1 0 0 x x x x x X X
160 Closure 133 1 1 3 1 1 1 1 0 0 1 1 0 0 x x x x It seems that the variable is reseted by method. X X X
161 Lang 1 6 3 0 1 1 1 9 0 2 11 3 3 3 x x x x x x x x x x x
162 Lang 2 4 1 0 1 1 1 3 0 0 3 1 0 0 x x x x x x
163 Lang 3 1 2 0 1 1 1 4 0 0 4 4 12 11 x x x x x
164 Lang 4 5 1 0 1 1 1 0 0 4 4 4 43 27 x x x x x x x x x Type change with adjust in related calls/operations.
165 Lang 5 6 3 0 1 1 1 21 0 0 21 2 31 31 x x x x x x x x x x
166 Lang 6 2 3 3 1 1 1 0 0 1 1 1 0 0 x x x x x x X X X
167 Lang 7 6 2 4 1 2 1 3 3 0 6 3 270 167 x x x x x x x x x x In one of the chunks, removes a conditional block with return. X X X X
168 Lang 8 5 0 0 1 2 1 1 2 0 3 3 34 14 x x x x x x x x x Transformed a class attribute in local var.
169 Lang 9 4 1 0 1 1 1 3 0 0 3 1 0 0 x x x x x x
170 Lang 10 4 1 2 1 1 1 0 9 0 9 2 2 2 x x x x x x x X X
171 Lang 11 4 2 0 1 1 1 4 0 0 4 1 0 0 x x x x x x x
172 Lang 12 5 3 0 1 1 1 7 0 0 7 3 8 7 x x x x x x x x x
173 Lang 13 8 3 0 1 2 1 19 0 0 19 4 30 12 x x x x x x x x x x x x x
174 Lang 14 3 1 1 1 1 1 3 0 0 3 2 1 1 x x x x x X
175 Lang 15 4 2 0 1 1 1 0 0 4 4 2 453 226 x x x x x x x x x Change local var type.
176 Lang 16 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x
177 Lang 17 6 2 0 1 1 1 2 8 1 11 6 11 9 x x x x x x x x x x x Unwraps input.length() from "Character.codePointCount()" method. Unwraps "for loop" from else branch. Unwraps "pos += ..." from if-else branch.
178 Lang 18 3 2 0 1 1 1 2 2 1 5 2 1 1 x x x x x x An existent if-else structure is removed and a new one is placed in an action that resembles a wrap-with replacement. An aditional wrap-with-IfElse is present in IfElse-CondExp form.
179 Lang 19 9 5 0 1 1 1 6 0 3 9 5 38 29 x x x x x x x x x x x x x x x
180 Lang 20 4 2 1 1 2 1 0 0 2 2 2 84 27 x x x x x x x x Null-Check is removed from "buf" initialization. X
181 Lang 21 3 4 1 1 1 1 0 0 1 1 1 0 0 x x x x x x x x X
182 Lang 22 5 3 3 1 1 1 6 0 1 7 2 1 0 x x x x x x x x x x X X X
183 Lang 23 6 1 0 1 2 1 31 0 0 31 3 196 105 x x x x x x x x x Implements equals and hascode to work with hash structures of Collections
184 Lang 24 1 2 6 1 1 1 0 0 1 1 1 0 0 x x x x X X X X X X
185 Lang 25 1 1 0 1 1 1 0 0 27 27 1 0 0 x x x x Changes keys in a vector of type key-value.
186 Lang 26 1 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x Adds a new parameter to constructor call (call overloaded constructor) X
187 Lang 27 4 2 2 1 1 1 3 0 1 4 2 9 9 x x x x x x x X X
188 Lang 28 3 1 0 1 1 1 6 0 0 6 2 1 1 x x x x x
189 Lang 29 1 1 0 1 1 1 0 0 1 1 1 0 0 x x x x Changes return type of method.
190 Lang 30 11 7 0 1 6 1 38 0 5 43 20 305 102 x x x x x x x x x x x x x x x x x x x x
191 Lang 31 4 2 0 1 1 1 8 0 0 8 4 7 5 x x x x x x x x Partially the same as Lang 30
192 Lang 32 7 4 0 1 3 1 14 5 3 22 4 427 74 x x x x x x x x x x x x Applies null check using synchronized block with object lock (HashCodeBuilder.class)
193 Lang 33 1 3 3 1 1 1 0 0 1 1 1 0 0 x x x x x Wrap-with applied with IfElse-Expression X X X
194 Lang 34 3 3 0 1 2 1 0 0 2 2 2 15 3 x x x x x x x x
195 Lang 35 4 0 1 1 2 1 0 0 2 2 2 278 62 x x x x x x Changes return of a null object to throw an Exception. The only statement of an existent "else block" is replaced by an exception throw. X
196 Lang 36 3 2 0 1 1 1 8 0 1 9 2 896 471 x x x x x x
197 Lang 37 7 2 0 1 1 1 8 0 0 8 3 2 1 x x x x x x x x x x
198 Lang 38 1 1 4 1 1 1 1 0 0 1 1 0 0 x x x x x X X X X
199 Lang 39 1 2 5 1 1 1 3 0 0 3 1 0 0 x x x x x x X X X X X
200 Lang 40 7 1 0 1 1 1 7 0 1 8 1 0 0 x x x x x x x x x x
201 Lang 41 8 2 0 1 2 1 19 0 2 21 8 58 23 x x x x x x x x x x x Existent condittional expression with null-check is expanded.
202 Lang 42 6 2 0 1 1 1 5 0 2 7 2 2 2 x x x x x x x x x x
203 Lang 43 1 1 3 1 1 1 1 0 0 1 1 0 0 x x x x X X X
204 Lang 44 4 1 3 1 1 1 3 0 0 3 1 0 0 x x x x x x x X X X
205 Lang 45 3 1 1 1 1 1 3 0 0 3 1 0 0 x x x x x x X
206 Lang 46 5 1 0 1 6 1 3 0 7 10 9 152 82 x x x x x x x x
207 Lang 47 2 3 0 1 2 1 6 0 0 6 2 44 21 x x x x x x
208 Lang 48 3 1 0 1 1 1 4 0 0 4 2 2 1 x x x x x
209 Lang 49 4 2 0 1 1 1 3 0 0 3 1 0 0 x x x x x x x x
210 Lang 50 8 4 0 1 2 1 2 6 4 12 6 179 68 x x x x x x x x x x x x x Replaces some existent Null-Chek, inverting postive by negative.
211 Lang 51 1 1 4 1 1 1 1 0 0 1 1 0 0 x x x Adds a return statement that does the role of an "else" branch. X X X X
212 Lang 52 2 1 0 1 1 1 4 0 0 4 1 0 0 x x x x x
213 Lang 53 0 3 2 1 1 1 2 2 0 4 4 10 8 x x x x x X X
214 Lang 54 4 1 0 1 1 1 3 0 0 3 1 0 0 x x x x x x x
215 Lang 55 1 1 2 1 1 1 2 0 0 2 2 1 1 x x x X X
216 Lang 56 4 0 0 1 1 1 4 0 2 6 3 880 425 x x x x x x x Changes types modifiers and overrides method related to Serialization.
217 Lang 57 3 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x x Changes direct acces of an object to method call. X X
218 Lang 58 1 1 3 1 1 1 0 1 1 2 1 0 0 x x x X X X
219 Lang 59 2 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x x X X
220 Lang 60 2 2 0 1 2 1 0 0 2 2 2 56 21 x x x x x
221 Lang 61 2 3 1 1 1 1 0 0 1 1 1 0 0 x x x x x x x Changes/fix computing of a variable. X
222 Lang 62 2 2 0 1 1 1 8 0 0 8 4 76 61 x x x x x x x Added a "break" in "case" branch.
223 Lang 63 8 1 1 1 2 1 2 19 1 22 4 118 91 x x x x x x x x x x x x X
224 Lang 64 9 3 0 1 2 1 21 0 0 21 5 12 2 x x x x x x x x x x x x x x
225 Lang 65 5 3 0 1 1 1 30 0 0 30 8 86 50 x x x x x x x x x
226 Math 1 2 2 0 2 2 2 6 0 0 6 2 0 0 x x x x x x x
227 Math 2 1 2 8 1 1 1 0 0 1 1 1 0 0 x x x x Apply a casting to returned value of an expression. X X X X X X X X
228 Math 3 2 1 1 1 1 1 3 0 0 3 2 1 0 x x x x x X
229 Math 4 2 3 2 2 2 2 6 0 0 6 2 0 0 x x x x x x Almost a copy, the only difference is in involved variable. X X
230 Math 5 1 3 9 1 1 1 0 0 1 1 1 0 0 x x x x x X X X X X X X X X
231 Math 6 8 4 2 7 7 7 2 4 12 18 17 327 240 x x x x x x x x x x x x x x A parameter value passed through the constructor during object instantiation is changed. A local variable is removed and expressions to increment it are replaced by equivalent method call. X X
232 Math 7 6 3 3 1 1 1 5 6 3 14 4 18 11 x x x x x x x x x x Changes involving adding and removing of many loops. X X X
233 Math 8 3 0 5 1 1 1 0 0 2 2 2 5 4 x x x x x Ajust the object initialization to reflect type changed. X X X X X
234 Math 9 4 1 0 1 1 1 1 0 1 2 1 0 0 x x x x x x x Replaced constructor by overloaded version. Changes object attribute value by direct assignment.
235 Math 10 2 1 0 1 1 1 1 0 0 1 1 0 0 x x x x x
236 Math 11 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x x
237 Math 12 3 0 0 1 0 1 3 0 1 4 3 11 3 x x x x x imports and implements java.io.Serializable.
238 Math 13 7 1 0 1 1 1 9 0 0 9 2 2 2 x x x x x x x x x x Contains the patch of Math-13
239 Math 14 10 1 0 2 2 2 9 3 1 13 3 2 2 x x x x x x x x x x x x x x
240 Math 15 3 1 0 1 1 1 1 0 1 2 2 1228 742 x x x x x x
241 Math 16 5 2 0 1 2 1 19 0 2 21 11 377 235 x x x x x x x x
242 Math 17 3 1 0 1 1 1 4 0 0 4 2 1 1 x x x x x x x
243 Math 18 5 2 2 1 3 1 2 0 4 6 5 60 38 x x x x x x x x x X X
244 Math 19 7 1 0 1 1 1 13 0 0 13 1 0 0 x x x x x x x x x x
245 Math 20 4 3 4 1 1 1 1 0 1 2 1 0 0 x x x x x x x x x Adds a new return output alternative through conditional expression of the form "exp?a:b". Something to think: "Is it a change in return expression, a return branch adding or both?". For now, it is considered as both. X X X X
246 Math 21 6 3 0 1 1 1 4 1 9 14 6 50 31 x x x x x x x x x x x
247 Math 22 1 1 2 2 2 2 0 0 2 2 2 0 0 x x x x X X
248 Math 23 5 1 0 1 1 1 7 0 2 9 5 124 104 x x x x x x x Call overloaded method with extra params. New variable is added with its initialization.
249 Math 24 2 2 3 1 1 1 0 0 2 2 2 36 34 x x x x x X X X
250 Math 25 3 1 1 1 1 1 3 0 0 3 2 2 0 x x x x x X
251 Math 26 2 2 0 1 1 1 0 0 2 2 2 27 21 x x x x x
252 Math 27 2 3 0 1 1 1 0 0 1 1 1 0 0 x x x x x x
253 Math 28 2 1 7 1 1 1 4 0 0 4 4 33 23 x x x x x X X X X X X X
254 Math 29 10 1 0 1 2 1 12 1 3 16 2 21 12 x x x x x x x x x x x x x x Changed a while loop to a for lor loop.
255 Math 30 1 1 2 1 1 1 0 0 1 1 1 0 0 x x x X X
256 Math 31 11 4 0 1 1 1 1 21 12 34 4 23 17 x x x x x x x x x x x x x x x x x
257 Math 32 2 3 6 1 1 1 0 0 1 1 1 0 0 x x x x x x X X X X X X
258 Math 33 2 3 5 1 1 1 0 0 1 1 1 0 0 x x x x x x x A variable used in a method call is replaced by another one. X X X X X
259 Math 34 2 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x x x A direct class attribute access was replaced by a method call that gives indirect access to the object. X X
260 Math 35 3 3 1 1 2 1 0 0 2 2 2 13 3 x x x x x x x Similar to Math-34 X
261 Math 36 4 2 0 1 2 1 12 0 0 12 4 49 17 x x x x x x x The change is almost the same in two different places. The only difference between changes is the use of the call "doubleValue()" in place of "floatValue()" in correspondent methods.
262 Math 37 4 3 0 1 2 1 12 0 2 14 4 46 11 x x x x x x x x x The changes are almost the same in two different places... same structure, but with variattions in the parameters/arguments.
263 Math 38 3 2 1 1 1 1 0 0 4 4 3 89 70 x x x x x x x x Removes Exception Thrown. The throws line is commented in code... maybe the change isn't a final one. X
264 Math 39 3 1 1 1 1 1 9 0 0 9 1 0 0 x x x x x x x X
265 Math 40 3 2 7 1 1 1 6 0 2 8 2 2 1 x x x x x x x X X X X X X X
266 Math 41 4 2 3 1 1 1 0 0 1 1 1 0 0 x x x x x x x x The changes were made only inside the for loop. X X X
267 Math 42 1 2 2 1 1 1 2 0 1 3 2 3 0 x x x x x X X
268 Math 43 1 1 0 1 1 1 0 0 3 3 3 4 4 x x x
269 Math 44 5 1 4 1 1 1 6 1 0 7 3 62 39 x x x x x x x x The variable and assignment adding are part of the for loop. X X X X
270 Math 45 5 1 0 1 1 1 5 0 0 5 1 0 0 x x x x x x x
271 Math 46 2 2 2 1 1 1 0 0 2 2 2 36 23 x x x x x The removed if-else condition is in the form "exp?a:b". X X
272 Math 47 5 3 0 1 1 1 2 0 3 5 4 209 80 x x x x x x x x x x The "WrapWith" condition is in the form "exp?a:b". The added variable is a class attribute.
273 Math 48 3 1 0 1 1 1 3 0 0 3 1 0 0 x x x x x
274 Math 49 2 2 7 1 4 1 0 0 4 4 4 35 29 x x x x x Changed the target of a iterator access. X X X X X X X
275 Math 50 3 1 11 1 1 1 0 4 0 4 1 0 0 x x x x x x X X X X X X X X X X X
276 Math 51 7 1 0 1 1 1 9 0 0 9 3 4 1 x x x x x x x x x x Adds an exception throw in default clause of switch-case.
277 Math 52 4 1 0 1 1 1 1 0 3 4 3 13 7 x x x x x x x New variable is added with its initialization.
278 Math 53 2 1 6 1 1 1 3 0 0 3 1 0 0 x x x x X X X X X X
279 Math 54 7 2 0 1 1 1 6 0 1 7 2 2046 1332 x x x x x x x x x x x
280 Math 55 8 2 0 1 1 1 17 0 1 18 5 14 0 x x x x x x x x x x x x
281 Math 56 4 1 2 1 1 1 0 6 1 7 1 0 0 x x x x x x x x Replaces a wrong and more complex calculation by the correct and simpler one. X X
282 Math 57 1 1 6 1 1 1 0 0 1 1 1 0 0 x x x Just changed the declared type of a primitive variable. X X X X X X
283 Math 58 4 2 6 1 1 1 0 0 1 1 1 0 0 x x x x x x x Call overloaded method without one parameter. X X X X X X
284 Math 59 2 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x X
285 Math 60 8 3 3 1 1 1 2 9 1 12 2 2 2 x x x x x x x x x x x x Unwraps try-catch. X X X
286 Math 61 2 0 1 1 1 1 0 0 2 2 2 71 18 x x x x x Replaces Exception Thrown. Changed the type of exception thrown. Changed the imported type. X
287 Math 62 13 2 1 1 1 1 0 1 3 4 2 13 9 x x x x x x x x x x x x x x x x x Changes the way to compute "optima[i]", changing params for call to "optimize". Removed if-branch is in the form "exp?a:b". X
288 Math 63 3 2 3 1 1 1 0 0 1 1 1 0 0 x x x x x x X X X
289 Math 64 15 7 1 1 1 1 19 5 3 27 13 180 131 x x x x x x x x x x x x x x x x x x x x x x x x Moved instantiation of object of type VectorialPointValuePair to another place (lines ahead). X
290 Math 65 7 2 0 1 1 1 0 5 2 7 2 12 5 x x x x x x x x x x x
291 Math 66 19 4 0 1 4 1 0 11 11 22 12 178 129 x x x x x x x x x x x x x x x x x x x x x x x x x
292 Math 67 2 1 0 1 2 1 0 0 2 2 2 4 2 x x x x A direct access to a vector was added in place of a value returned from a call to an object method. The change was similar in structure in two different places.
293 Math 68 9 3 0 1 1 1 10 0 2 12 9 253 160 x x x x x x x x x x x x New objects were instantiated. Objects instantiated before were removed too (line 419).
294 Math 69 2 2 3 1 1 1 0 0 1 1 1 0 0 x x x x x x Fix assignment operation. X X X
295 Math 70 3 2 7 1 1 1 0 0 1 1 1 0 0 x x x x x x Call overloaded method without one parameter. X X X X X X X
296 Math 71 2 1 4 2 2 2 7 0 0 7 2 0 0 x x x x Three lines equal lines are added in two different places. Just line 302 is different. X X X X
297 Math 72 2 1 0 1 1 1 0 0 2 2 2 11 7 x x x x x Similar changes in two different places, the same melhod is targeted, the same argument is changed, only the new values applied are different.
298 Math 73 3 1 6 1 1 1 4 0 0 4 1 0 0 x x x x x X X X X X X
299 Math 74 5 0 2 1 1 1 3 0 4 7 3 2 2 x x x x x x x x x A vector/object was instantiated.The way to initialize values was changed. X X
300 Math 75 2 2 1 1 1 1 0 0 1 1 1 0 0 x x x x x X
301 Math 76 7 5 0 1 1 1 6 0 8 14 12 95 67 x x x x x x x x x x x x The structure of the changes are similar and applied in two different methods.
302 Math 77 8 1 1 2 2 2 0 9 1 10 2 0 0 x x x x x x x x x x x x Fix a assignment. Removes a method (aparently, unrelated changes). X
303 Math 78 6 2 7 1 1 1 11 0 0 11 3 8 0 x x x x x x x x x X X X X X X X
304 Math 79 1 0 2 1 1 1 0 0 2 2 2 1 1 x x x X X
305 Math 80 1 2 9 1 1 1 0 0 1 1 1 0 0 x x x x x Fix expression in assignment (added parathesis). X X X X X X X X X
306 Math 81 4 3 6 1 3 1 1 0 3 4 3 938 643 x x x x x x x x x Fix/updates assignment to var upperSpectra. X X X X X X
307 Math 82 1 2 10 1 1 1 0 0 1 1 1 0 0 x x x x Changes operator in condition. X X X X X X X X X X
308 Math 83 3 2 0 1 2 1 0 0 3 3 3 51 34 x x x x x x The added "WrapWith" uses "exp?a:b" format.
309 Math 84 6 1 5 1 1 1 9 0 0 9 3 30 15 x x x x x x x x x X X X X X
310 Math 85 1 2 11 1 1 1 0 0 1 1 1 0 0 x x x x Changes operator in condition. X X X X X X X X X X X
311 Math 86 6 1 0 1 1 1 3 3 0 6 2 20 14 x x x x x x x x The condition to throw the exception is moved from one place to another.
312 Math 87 2 1 2 1 1 1 0 2 2 4 3 2 2 x x x x x X X
313 Math 88 8 2 3 1 1 1 5 6 0 11 4 7 5 x x x x x x x x x x x x X X X
314 Math 89 3 1 1 1 1 1 4 0 0 4 2 1 1 x x x x x X
315 Math 90 2 0 1 1 2 1 3 0 0 3 2 11 0 x x x x Added a new overloaded method reusing part of the implementation of an existing one. The old method just call the new one. X
316 Math 91 3 1 0 1 1 1 0 0 2 2 1 0 0 x x x x x x x The value of a class attribute is accessed in place of a method to do the assignment.
317 Math 92 15 6 0 1 2 1 48 5 1 54 12 92 19 x x x x x x x x x x x x x x x x x x x x x x x x
318 Math 93 7 3 1 1 2 1 8 0 2 10 3 50 15 x x x x x x x x x x x x x X
319 Math 94 1 2 1 1 1 1 0 0 1 1 1 0 0 x x x x X
320 Math 95 2 1 4 1 1 1 2 0 1 3 3 3 2 x x x x x X X X X
321 Math 96 2 3 0 1 1 1 0 0 1 1 1 0 0 x x x x x x Changes logical expression in assignment
322 Math 97 4 3 2 1 1 1 14 0 2 16 5 9 5 x x x x x x x x X X
323 Math 98 1 2 1 2 2 2 0 0 2 2 2 0 0 x x x x x Changes dimension of two vectors. X
324 Math 99 3 1 1 1 2 1 8 0 0 8 2 171 68 x x x x x Instantiates a vector object as part of the exception creation. X
325 Math 100 2 2 0 1 2 1 0 0 3 3 3 39 26 x x x x x Apply the same replace of methods in three different places.
326 Math 101 2 2 2 1 1 1 1 0 1 2 1 0 0 x x x x x X X
327 Math 102 6 2 0 1 1 1 17 0 0 17 3 5 5 x x x x x x x x x
328 Math 103 3 3 0 1 1 1 10 0 0 10 2 2 2 x x x x x x x x
329 Math 104 1 2 2 1 0 1 0 0 1 1 1 0 0 x x x x x X X
330 Math 105 2 2 4 1 1 1 0 0 1 1 1 0 0 x x x x x X X X X
331 Math 106 3 2 0 1 1 1 8 0 0 8 4 36 18 x x x x x x Only one variable is different between the two blocks of code in patch.
332 Mockito 1 6 1 0 1 1 1 11 0 1 12 1 0 0 x x x x x x x x
333 Mockito 2 4 1 0 1 2 1 7 0 0 7 3 25 13 x x x x x x x import and instantiate a new Reporter object. It appears as an validation object/procedure.
334 Mockito 3 9 1 0 1 2 1 15 1 2 18 3 13 12 x x x x x x x x x x x
335 Mockito 4 3 4 0 1 3 1 3 0 2 5 3 251 223 x x x x x x x x
336 Mockito 5 1 1 0 1 1 1 0 0 1 1 1 0 0 x x x Change parameter type in catch command.
337 Mockito 6 3 3 0 1 20 1 0 0 20 20 20 320 41 x x x x x x Instantiates specific objects in place of call do Any.ANY
338 Mockito 7 2 1 0 1 1 1 1 0 0 1 1 0 0 x x x x x Instantiates and initializes an TypeVariable vector.
339 Mockito 8 1 2 0 1 1 1 0 0 1 1 1 0 0 x x x x Replaced and "else" with an "else if"
340 Mockito 9 4 1 0 1 1 1 5 0 0 5 3 28 5 x x x x x x
341 Mockito 10 7 0 0 1 4 1 5 0 5 10 7 81 36 x x x x x x x x x x Changes signature of existent methods, adding new params.
342 Mockito 11 7 2 0 1 2 1 8 0 1 9 3 5 4 x x x x x x x x x x
343 Mockito 12 3 1 0 1 1 1 4 0 0 4 3 2 1 x x x x x
344 Mockito 13 3 2 0 1 1 1 2 0 1 3 3 5 3 x x x x x x
345 Mockito 14 4 2 0 2 2 2 4 0 1 5 5 109 80 x x x x x x x An existing parameter ("mode") was wrapped by a constructor call, instantiating MockAwareVerificationMode object
346 Mockito 15 3 1 0 1 1 1 3 0 0 3 3 22 11 x x x x x Instantiated a BeanPropertySetter object
347 Mockito 16 5 1 0 2 3 2 2 1 3 6 5 73 6 x x x x x x x Merged two overloaded method definitions.
348 Mockito 17 6 2 0 2 3 2 7 0 2 9 6 80 61 x x x x x x x x x
349 Mockito 18 3 1 0 1 1 1 2 0 0 2 1 0 0 x x x x x Returns instantiated ArrayList<Object>
350 Mockito 19 11 2 0 5 5 5 18 0 8 26 11 41 20 x x x x x x x x x x x x x Adds new parameter to existent method. Adjust code to reflect this.
351 Mockito 20 7 1 0 1 1 1 1 0 2 3 3 12 11 x x x x x x x x x Instantiates an InstantiatonProvider object
352 Mockito 21 14 2 0 1 3 1 16 0 4 20 5 15 10 x x x x x x x x x x x x x x x x x x Apply "static" modifier to withParams method
353 Mockito 22 2 1 0 1 1 1 2 0 1 3 1 0 0 x x x x
354 Mockito 23 11 2 0 1 5 2 15 0 3 18 8 77 48 x x x x x x x x x x x x x Instantiates MockitoCore and ReturnsEmptyValues objects. Replaces instantiation of Answer to SerializabelAnswer object.
355 Mockito 24 3 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x x If-Else implicit in "exp?x:y" format
356 Mockito 25 13 0 0 1 6 1 25 2 4 31 10 71 29 x x x x x x x x x x x x x x x
357 Mockito 26 1 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x
358 Mockito 27 5 0 0 1 1 1 0 1 1 2 1 0 0 x x x x x x x x
359 Mockito 28 3 2 0 1 1 1 1 0 1 2 1 0 0 x x x x x x x Changes method signature adding new parameter.
360 Mockito 29 1 3 2 1 1 1 0 0 1 1 1 0 0 x x x x x Wrapping implicit in "exp?x:y" format X X
361 Mockito 30 4 0 0 2 2 2 1 0 2 3 3 3 3 x x x x x x x Adds new parameter to method signature, ajust code.
362 Mockito 31 4 0 0 1 1 1 2 0 1 3 2 51 25 x x x x x x x
363 Mockito 32 2 1 0 1 1 1 4 0 1 5 2 30 25 x x x x x
364 Mockito 33 7 3 0 1 1 1 11 0 1 12 2 1 0 x x x x x x x x x x x x
365 Mockito 34 2 2 0 1 1 1 0 0 1 1 1 0 0 x x x x x
366 Mockito 35 3 2 0 1 3 1 0 0 3 3 3 152 31 x x x x x x
367 Mockito 36 3 1 0 1 1 1 4 0 0 4 2 191 146 x x x x x Instantiates an Reporter object
368 Mockito 37 3 1 0 1 2 1 8 0 0 8 2 2 1 x x x x x
369 Mockito 38 1 3 2 1 1 1 0 0 1 1 1 0 0 x x x x x X X
370 Time 1 7 4 0 2 2 2 9 3 1 13 3 4 4 x x x x x x x x x x x
371 Time 2 5 4 0 2 2 2 6 0 1 7 3 230 108 x x x x x x x x x x
372 Time 3 1 2 0 1 10 1 20 0 0 20 20 242 70 x x x The patches makes a type of "bypass" null check, where the logic is applyed only if the value is different of null.
373 Time 4 4 2 7 1 1 1 0 0 1 1 1 0 0 x x x x x x x x The swap was made on a constructor call. X X X X X X X
374 Time 5 12 3 0 1 1 1 6 0 6 12 2 1 1 x x x x x x x x x x x x x x x x x
375 Time 6 7 3 0 1 3 2 26 0 0 26 3 805 556 x x x x x x x x x x x x
376 Time 7 4 0 3 1 1 1 1 1 0 2 2 2 2 x x x x x x x x Move assignment of var and changed assignment expression. X X X
377 Time 8 6 5 0 1 1 1 3 0 2 5 3 6 6 x x x x x x x x x x x x
378 Time 9 5 2 1 1 2 1 6 0 3 9 5 22 15 x x x x x x x x X
379 Time 10 3 1 0 1 1 1 1 0 1 2 2 52 25 x x x x x x Adds new variable and its initialization.
380 Time 11 5 0 6 1 1 1 1 0 4 5 1 0 0 x x x x x x x x Changed a static initialization for a method inline implementation. X X X X X X
381 Time 12 8 3 2 2 2 2 12 0 2 14 8 70 26 x x x x x x x x x x x x The if/else added is implicit in the passed parameter format (exp?x:y) for the LocalDate constructor call. X X
382 Time 13 6 3 0 1 1 1 4 0 1 5 3 43 37 x x x x x x x x x x x
383 Time 14 5 1 2 1 1 1 5 0 0 5 2 1 0 x x x x x x x x X X
384 Time 15 3 1 2 1 1 1 3 0 0 3 1 0 0 x x x x x X X
385 Time 16 3 2 2 1 1 1 0 0 1 1 1 0 0 x x x x x x x Changes parameter for constructor call. X X
386 Time 17 11 4 1 1 1 1 13 0 5 18 5 8 2 x x x x x x x x x x x x x x x x x X
387 Time 18 5 2 2 1 1 1 12 0 0 12 2 3 3 x x x x x x x x X X
388 Time 19 1 2 2 1 1 1 0 0 1 1 1 0 0 x x x x X X
389 Time 20 7 4 0 1 1 1 6 0 2 8 3 4 4 x x x x x x x x x x x x
390 Time 21 8 4 0 1 1 1 12 2 4 18 5 10 6 x x x x x x x x x x x x x
391 Time 22 4 0 0 1 1 1 5 0 1 6 2 1 0 x x x x x x x x
392 Time 23 3 1 0 1 1 1 5 4 4 13 8 17 17 x x x x x Changes entries in a key-value map.
393 Time 24 4 1 0 1 1 1 5 0 0 5 1 0 0 x x x x x x x
394 Time 25 6 2 0 1 1 1 9 0 0 9 1 0 0 x x x x x x x x x x
395 Time 26 3 2 0 1 7 1 0 0 7 7 7 98 84 x x x x x x
396 Time 27 1 2 0 1 1 1 2 0 0 2 2 3 3 x x x x
File diff suppressed because one or more lines are too long
Binary file not shown.
+369
View File
@@ -0,0 +1,369 @@
commons-math 0da657a65c92b086a301a6ffe9e34ec272f8889c 1
commons-math c0b655ace5665c0cd32e3f5e5b46edad4d223125 2
commons-math 92c4697300e8ddf06152bc0838c738d50673c1d2 3
commons-math 277e61721f34be16a20da663fd597edf6b51939b 4
commons-math e54a1c92302f3167b06bc04859b87ac0681bcdf3 5
commons-math 419a052c6842192e78f747d9f5af619c2ca56e78 6
commons-math 1cd68eed57febf806c385bf04a596b922f4c1964 7
commons-math 196e63174afdb3df1529c1b97bb8437b16831cc3 8
commons-math de98c0f0a566060ac143c39036f06a03f141dc52 9
commons-math 7e2ffcc9034de41d7787f0b33b5670474f7a10de 10
commons-math aa2bd1d0656b0001192aa2b2ef779cfd1f3b7e4d 11
commons-math cc82d38aaf6ec24758a0a6df9535b8204e22ef12 12
commons-math 8079ea5b8d1366445da532906e43afa9291473cf 13
commons-math a6b2e992e17cee0d4cb5a2da8242a20b8e5a8fc3 14
commons-math b221a7342856a2a548f5d9817055defc0ec4dea6 15
commons-math 875ed1f4d90d1457c0ab40dafc79be5a0c6f9bf6 16
commons-math 621806b796bc416f00341feca894ebae07be5ed0 17
commons-math 7c7d7e8f103582e753c39a2baf14a483e991fefb 18
commons-math c73fad0a0d42103b5e13a68317ea95b1090263ba 19
commons-math efa9de05114492ca38cf4739a07339f5ad6faddc 20
commons-math 468ed8550b7759858a4dc59d694859a8ae7d35f0 21
commons-math b0cba9a79ee99b09958dec8e40c75bed47b7f780 22
commons-math f1b04e990f4fc86544b6230fab1aa8ecfb74fbb1 23
commons-math d5ff460ba69e4261f066d7856e2f90b886924513 24
commons-math 996dd998e3081e4a842017b8ebcdae9b6059b530 25
commons-math 1566dd339f6efc2347b0962fac7fce22adbc31ff 26
commons-math 5f2077bb774d283e7984a2d5dc0c2759f2954963 27
commons-math d3fc5af31eb696af03cfbe2e18584c7e1d307d54 28
commons-math 7bbddc2203bed78fafe7739a97df1f53e767341a 29
commons-math a25e7f7abe7f6b3f4147febee4a917ce92241aab 30
commons-math 2d846db3aec18dd081e680be05f6e0faad1cb186 31
commons-math f81847d8079753ce45b049813730055188a22efb 32
commons-math 3ef79313597d7d49067c48d65a09042d8d94822d 33
commons-math 520f36b43a13681db338a07ac6c251cbe1a7a6e5 34
commons-math a5d8d115cb85149c62059a23e8f4d318cac0e903 35
commons-math 1a15d5f4c13eca0435b0ed7e6a624064e7f7e07f 36
commons-math 65ed08e15af15617e967d3ea9d635dc55a0ef866 37
commons-math 91cc42ba0493938aa53585720b315b62c5784a96 38
commons-math 74e00296574dc3ac0bc064fc3258faabaf732d6c 39
commons-math c8becc7c47963bcdc1578298846ad6fbf08f64ef 40
commons-math 882556eabbeb2f62939aee29afdec2a01ce4bbe1 41
commons-math e98a5000cd211539bf4ba65f62cc7f81395e1726 42
commons-math dcae84b2e8f025e93340307d8bc04d406202c323 43
commons-math 53c8cec5ceb4cd81e3f9b8858814accac83a324e 44
commons-math bc4e9db01c2a03062965fa4bac65782376ab2287 45
commons-math e6f27ebcb9ee0a344308382b99a3894bb61b225d 46
commons-math 330f3fe17d132bd4e2a91ff812ccf489e77f390f 47
commons-math 13d22f45624470ce5c07c085cf8b1ec0251eaee6 48
commons-math 09e35881f1ad74335707e70aa78fd347e37d1066 49
commons-math 39cf5e69259d7560d50553caf028f9229b721013 50
commons-math 2f066a5b2d2fe8a00a251a3220b0d52446fe392d 51
commons-math 3c319db494928e9d51ea6091b301302c65f4eceb 52
commons-math 7707b0bb80be05bbf6533a36bb0c646cbfd1026d 53
commons-math c00ac8120a4215125e49775cd9351e689586b467 54
commons-math 0c38504ffa3ef520ce78e260538d7b8742c895e8 55
commons-math e06fe05e2dd68936e770ba67caa7b9924568170d 56
commons-math 00fea9d8078d487e31cec8292dbd9bd69bc9c216 57
commons-math 45add3a0e7e2e94bfc29e85c9ef0856e2e473a33 58
commons-math 5dcca48038fb6274cc155251d09db12746ccce71 59
commons-math 9054aac4b948117b838d6a5b15be1f50965d805a 60
commons-math f76efe5f4ef36fadc677c94269927076f2f42eb9 61
commons-math 8de3eb542b2be80ba309b2c91ae1dba75bdb5063 62
commons-math d2a5bc02c002acfa220ce8bad23b9e8af137f47d 63
commons-math 7dadc2ab019f066a7a287376ad4c63193e8a0a9a 64
commons-math a4f9188a55e6935d4d38ae97806af4d59e671588 65
commons-math 76fcbc838c0f27d9b029c1f283390cb4f47f8895 66
commons-math fc505bba569dede0d29a401798fa9f55df9e27f1 67
commons-math 615ca9a000c253575e6f62bed87db6110b750834 68
commons-math a2711c189d9754c22e3aba2de1c6c125e52626aa 69
commons-math f41fcd85ca62a2109a6e550be0353d292d351213 70
commons-math 6537e18ad189603e19615226e6aa1a9cdd154b8f 71
commons-math aa09ac7ca6e01a2ba41470ca590f07f2ada8af6f 72
commons-math 29c3b75e2d5120771ca85ffcbffc9b7cb5d45c58 73
commons-math d06e7b7c8e646ff489a5dfba47dfcb283a194e9b 74
commons-math 523df0c13719150b1397a6094f410274bfaf1475 75
commons-math 39e2ad8af8fdedac51144158061cb31e7863c3a1 76
commons-math d6555de715889237b7be11639d164e7098862003 77
commons-math b3ed2415fc58b34667d99f077bae6c8e38b7aced 78
commons-math 138baec1c778c2ea1dc1a6efe6d5e76a3b072b1d 79
commons-math 3ced4f2a4e2546f0d7c309bd8f6305edee0dee8f 80
commons-math 7d903ca533833e5db8d2fe150f1e31b54ddda700 81
commons-math 4ece1884cc408e15c8f1db9010fec5cac43937b9 82
commons-math f36be8e8b7371fb8814456b6c095866aa802de78 83
commons-math 317793eeff84dc9b260301adbe4aa8f5c79f703a 84
commons-math 9be86f674f91fa3fe0a8694e7b98472dabe6886d 85
commons-math bd8f05c4dda4b5b00e525e08fd6c95d256423c97 86
commons-math 75f5c92aeb47e264c196a8c38a495adac89f493c 87
commons-math 24a6a2692e942969f5c39bd88d3d12ac0f0bf0d9 88
commons-math 62b3877f953dd47c4d301be35c77446e2cf55311 89
commons-math 0c84b28c3542f3340f7ec0dffc34c60dff66604e 90
commons-math e1df5f5486f10ac521dfc3dc20d1bfe508e67aa8 91
commons-math 85a8ab2dcfc26e83be1514acdb11d3feaac3e73d 92
commons-math 7cd3d822b65b7acdd1f6e1c82b291cd994f4fe05 93
commons-math a96e597894562c2cf01fc678f6c435d65ccc31c5 94
commons-math fbf87122e0f7229892b6dbbf2e211cc46acea008 95
commons-math e6449cccdeaba96ffba4c27db322c5c3d5c18662 96
commons-math ed492bd0c5c5c3a0258a65cb31cc8723d8f011fd 97
commons-math a0f3e0435c405ec842240413e2165863c9c76a16 98
commons-math 58b5609fe8f99aabc990d885bf6c4d85631b7c79 99
commons-math 876d133334e8dde309cc11f884c0dd4cc9ce530e 100
commons-math 32643d19538ad853a1280eb4060c4f15ac6dc3dd 101
commons-math a1bac127067c912b4a9f7a2957c427853a36c730 102
commons-math 4ce05bcd51ec956d789d20b59c743603d24a8ab7 103
commons-math e39a7750ef362679599b623b05bfadb150832515 104
commons-math fc21b26f84312e4f75e8b144238618c73a8b091f 105
commons-math 41ba9e00e3bbde990f6821f67f0da2a5575b9ac3 106
commons-lang 687b2e62b7c6e81cd9d5c872b7fa9cc8fd3f1509 1
commons-lang 09d39029b16dee61022dc8afde4d84f523f37813 2
commons-lang 2c9c8753165dc7ce5dd1d5a6d741b445b33302c2 3
commons-lang fb47b96ab635d7cc6e9edefdddc46f1baf63b117 4
commons-lang 75944e541d358d5b06ebbba3098a919fbf2539d4 5
commons-lang cff0f1ae37bb2b7ab2dcdb10dec1f3cad7532e1c 6
commons-lang e71f6dd3f2f70c640ae73d28b432b3a69ffcab4b 7
commons-lang a4a455053e7e4a77320efd6db0814f4de82d754d 8
commons-lang c45d5bff75edfef6387d40e681f9dc7c9b517bbb 9
commons-lang afe5dff79fc23d222ba1f1481fbbf55e09d2e6da 10
commons-lang c821fafce06adefc040e8983fb12d49399a48627 11
commons-lang c9d786a4fe2639581047d878a64bab6fb24f1ab3 12
commons-lang bd59a1908a1df3364918be7b07782500616b15ac 13
commons-lang cf7211f9d7d70d56501d8c4c827bf9ce3cac5f0b 14
commons-lang 8185a9e681d6de5f40b0ed07b40730c9761bad37 15
commons-lang 13c7f19a5ad506340a7c8d8601ef4bf2426ab325 16
commons-lang b4255e6d071dc8d48bfc51037cecb29097b9a49d 17
commons-lang 2aa9dca994b006ccbfcb528de5ff0da6a5578411 18
commons-lang 0b3a8a3128890f710700d04e38df48b883d11d91 19
commons-lang f08213cc4c35fd71e98aa5233fcb2db3333793a2 20
commons-lang 55f642725742513824975af0e5e91cb1920b6d72 21
commons-lang 0b2b82ad923b0455cde93286e3f504a1abd0863b 22
commons-lang 46356183872f2cba5e340993c6d85597a4f3cdbb 23
commons-lang 81903abbb25ff92597d5f1e3acc648d12bdee444 24
commons-lang 2bae68787d15c3d3540380164e62759485078ec1 25
commons-lang 75d5b74a1a7ef68c5169f4b44cdf972c1ab07ee0 26
commons-lang c2560c028173c3bc0a4627d4ce5ce221bcc9be66 27
commons-lang 3e1afecc200d7e3be9537c95b7cf52a7c5031300 28
commons-lang 982e295053663787bb0396b81a8956c3c87dc25b 29
commons-lang 19b6372018c6b800f8e2bf1b85e15ef4cbd500da 30
commons-lang 38bf7048571f3bc8dd34d14691906426444e4381 31
commons-lang 006fca88e86bd6f650d4d021d2ff3573a572827d 32
commons-lang 0603aef594fa60126c2d45f2ab164eee39f7b44c 33
commons-lang 496525b0d626dd5049528cdef61d71681154b660 34
commons-lang 80bd78ea0685d28ddec9b8162d652db9dec949ce 35
commons-lang da0612b348fcfa7679b92a5e9b8e1603e8e2da3a 36
commons-lang ea140fb5c327e2b58f6c5bf1057c7dede909a50c 37
commons-lang a95e76eefb91bdd9cf1c22734874a3d3c95ed327 38
commons-lang cb40e35f5e0990fad4c5278964fcc24e112dde8c 39
commons-lang 8b1a8e178abb46cc048a3982636b8ec4e6ffc8dc 40
commons-lang 4d3629f310e84cc24c0e5f09d97f5126692d0128 41
commons-lang dd2ae757d12554f290931f0b3c05e33ad993ecd1 42
commons-lang eb3e2ae1f3734986a9f0225c661888baac3cb13b 43
commons-lang 81f10d7f1ef52d44f43b38d81ac3dc1c83d45134 44
commons-lang d95fcd8e24568b4f9d3cb9da922a4029e293c793 45
commons-lang 916639bda234a8e5a030361c4068667764b34cb7 46
commons-lang d5e343049c2610c31ddacb24f0d173942f6d5ac9 47
commons-lang eb8f74efb75e71fc91e515a38becc2aac203e339 48
commons-lang 0ac772a4e3b07287c435fdc3c812f67277c85cc8 49
commons-lang 659ef247b1452b6d5b9f92271357381fa59fea50 50
commons-lang a5589b39e985e64861bd920aa7b13ab32c215b06 51
commons-lang 868f6976aea222e96259843f56df9aed8e48584b 52
commons-lang d3b1163073c7aeb6011a5b65bfadad15bfc0f108 53
commons-lang e89e8d62b911340cc5b293465cdae909f3dfd640 54
commons-lang 3ef8a796b5ddf87e3e9afec9ba94aac62681b394 55
commons-lang 672e3a8ead2970181c32cf5fc70a3ea3d020c1fc 56
commons-lang bbd990b81fd7f8ab9dde75c8070b973b9ce500fc 57
commons-lang 1fd45a4f68ea497dfbdf1a67b8b8805a4a9b1166 58
commons-lang c04cd2337786ce7d54ed1fb757192fb8bc8c5e41 59
commons-lang a8203b65261110c4a30ff69fe0da7a2390d82757 60
commons-lang 88c76d207f642831ca899e144159424aaa60cf8e 61
commons-lang 1313a65c11dea54f1baf492d4185fb2d673b6716 62
commons-lang 0695c3f71e3fc5abe29d8b9b33eed7faac7e73bf 63
commons-lang 8de71ae52958ae70fe651b7327319c9beecd9b84 64
commons-lang bb1671667d9085fb76bd06af7f7ad91d2c1c8389 65
closure-compiler 1dfad5043a207e032a78ef50c3cba50488bcd300 1
closure-compiler d1cfe67977d8f3aaa85ec20c262171da394d5977 2
closure-compiler d80fcc04239ab8c4cf781273c4f9bc54cf06f479 3
closure-compiler efefb736fccc2039b5fb079710b3f2ac82b8c6e4 4
closure-compiler 59eec92e364b2ec2cec9dd63449f5c0134983f18 5
closure-compiler 9f7a353385bf0b93cdaeaa56cc5b1450db790127 6
closure-compiler e736b1c92981fafdc87f3f41f66918305f173734 7
closure-compiler 6300a43566d4adcf8828128267808a8740edc835 8
closure-compiler e9c15465c000c19ef4e0b8f68a680589ae4111d7 9
closure-compiler 0884a4cbef1c82153ef306477a12af0480385a35 10
closure-compiler 482b767639e6eec7c30d8898851560c41b66d885 11
closure-compiler d06ac163013a3779fcec7c2f544ba99d08f69f58 12
closure-compiler d6d733f461ee5ba26e9326c1c7609f1f00d6d2db 13
closure-compiler 4b15b25f400335b6e2820cb690430324748372f9 14
closure-compiler 968b3f467f51c6bfec18af1fbcf980a0f19a1fb3 15
closure-compiler 3b97e5e4212c769daa22a96094ed19b4658c8760 16
closure-compiler 33ab4df84afbdb36216b8a1ea3a526c438615e26 17
closure-compiler ea119a2d06328852763f9ee447c3bf74fa1f83dc 18
closure-compiler 686146c4de7d2bd985156ae15175365633dd0f94 19
closure-compiler ebf229b05f4ee71bc05d70830f5dd5683271d661 20
closure-compiler 1787d7b2cff83a0f177dd958033c53e4502406d2 21
closure-compiler 43a55234ef122a1ed98681ce0350506207b878d5 22
closure-compiler b59cdd9e2dc64d2db86b90982c200a78f2f85e50 23
closure-compiler 70ca6014779735bdc52ca0e80e528257829a15e7 24
closure-compiler 2e904fcdc3bc09e3bff557fcfca383ba7e450095 25
closure-compiler 372eb11e44b8559004bfe78a5b4003caf0072135 26
closure-compiler 7a8983042131c5a9c2b5421ae42075cbb8ef1aeb 27
closure-compiler 59dbb7a28680caad08ddb1658123fe0cbb1ae689 28
closure-compiler 6924915efab89f921fd0779fe200fecc1bf80847 29
closure-compiler 38e2b8f247423734adec3dbd76fa22da1a3561a8 30
closure-compiler 0a670cb51fd56c12c19f98884c9513792ebc3f76 31
closure-compiler 66c8c695fd8130e3ede6f77c6e5cc1ec96a0e9b3 32
closure-compiler 382422adae8e9f07fc23c94089c0ebe08a2174bc 33
closure-compiler 87b154f89cba3c67045cd7a783b79231d0630a4c 34
closure-compiler 22784dc96c391b01692ce686eb93b9aa0ef74ede 35
closure-compiler be397ee0d0be2aad8f71d12f097b17563866445a 36
closure-compiler 7e93d521cb67ce33018315234fafe8a5aa30ee1e 37
closure-compiler 8cf08115c6b252f8c6b54348a4089dccc45a01fb 38
closure-compiler d577973fb378dfe0d05991ec0dfa6c1f40e574ee 39
closure-compiler 6ebc0c3d7d4da7d2cf95f53d4ea790e89d3abc7a 40
closure-compiler 00b1517c53912ac6843c257c0a6ead1176e8c5ee 41
closure-compiler fb01427a445ebfeb3af5e220a98ccaced339b73e 42
closure-compiler f636f23bdef4b27752ca249a28463ec1b6af1f0b 43
closure-compiler 64bb2291f9a9bbab67d865dffe603f8a0df8ef30 44
closure-compiler 6aa71f116df0102a98c463f471ad8ddd4dba01f8 45
closure-compiler 4a1a31c6a50a0fbe25fa33277909bd51f1deb8e9 46
closure-compiler aedce35970673f20696d5721acba13e986cc764c 47
closure-compiler 46da17d59abb4f9c48b6ffd31601c212490b970b 48
closure-compiler 1a7ba5cb0111dd3ed9afd9691cab39b3c341e408 49
closure-compiler c3b630fc9c2a1c4eb7cb718f8d324bfb306cb9df 50
closure-compiler a02241e5df48e44e23dc0e66dbef3fdc3c91eb3e 51
closure-compiler 5909c3db59b16886917456ab950ef9661a7fe6b1 52
closure-compiler 9959716b01fc5231ae68bc7a24454ce45d341606 53
closure-compiler 7e9b8336568ea7f05c33e1b58eb67fa6d4eee756 54
closure-compiler f2c0cb1f67ecb3315c0cb11326c9cb04db07ee8a 55
closure-compiler 9e921fa973c603473f745fff76c44620fd7719e3 56
closure-compiler f759f431d5a7a2261b44440bca9cfab93ae25302 57
closure-compiler f640b5dec722422c93a9a624cd21d30b5e321858 58
closure-compiler 49b4ef31c850611a5c85d95140b4cedda7f4c59a 59
closure-compiler fbaadc736f0031dd84bebea33abae497b47158cb 60
closure-compiler 34e4616a924bf272c076039e143e20f1d792731e 61
closure-compiler b12d1d6489329c989b15635f6f7f06681b3f6582 62
closure-compiler 37b0e1b0b5860e6cd4f48519c1105623778dc44f 63
closure-compiler de726510af4329fb8eeb8a54b2d93d8d37c87545 64
closure-compiler 48aea0ff7d027507362007415963a4b662fb10a7 65
closure-compiler 59a30b48325cccadabae8687fdf603d72e26c157 66
closure-compiler aa89d05b48332d68b8e6ebcee427b2ac3b4e3184 67
closure-compiler 9d5a6e3082dd99f6c44df1b3526b9e83b79aa7da 68
closure-compiler 63df133d0850805818d1e280ba47dcefc9763c89 69
closure-compiler ec4a34c2bd87ba54fa8770affdeeea4f3c42089b 70
closure-compiler db1fdf97454a6e4ff2d29cab5f1ef2273b54c0b4 71
closure-compiler e323b879de2e53e5eedf6e7afb0d582382c6248d 72
closure-compiler ee8344091722c28c9351e78dcb4155fbfddfd1af 73
closure-compiler 03fee32a06ccf8257b2da67b9034270be38805ae 74
closure-compiler c6cc58a9bc617483366141386e047b085b4e83ff 75
closure-compiler 78b01c3a435cd175ce3ee70f97b2f8faac342cdc 76
closure-compiler b88400ce0e9c1a0dadfd3417c256b02a82f38fe1 77
closure-compiler 25829b0395164533782d608399096803321225a7 78
closure-compiler 5d397618f3c86d9c444a4c4c6441267b8a89a21d 79
closure-compiler 58786c3f717fa506280127265cd68fedf17de0a9 80
closure-compiler 084b868bc2fbf9d6d0319e5a362ade1d7f43f899 81
closure-compiler a857aec27d79fc234fddd4a72c1215af0251b2d8 82
closure-compiler 43c245f0ff8d409e81e25687e69d34666b7cf26a 83
closure-compiler 4839e1ea57f9a1a26debd2cc8f22beef7282b490 84
closure-compiler 21a2103d7fa5664ea324ef9ee25b4a8922e50955 85
closure-compiler 0907b6618a60b2de23c8f7ec2217a37dc5e9a091 86
closure-compiler f64a3f51bd346547ce6e1edb30601df73dff27d9 87
closure-compiler 6a17da87f9e132bdc147b33223826da040c77a6b 88
closure-compiler 4b065734d8afb5ab0d241ee5da22af0fa9d75ec3 89
closure-compiler c5e143f7df0c3d73f6634488cac8ad8e7054fe05 90
closure-compiler 7eb2d84de101a125d41d3a1157f4eed789ca4a0d 91
closure-compiler 8980b60033b1c6853cbca593ec89d3d332adf7dc 92
closure-compiler 9d1e18e87a41f2a610ed70f3a1d57abbce7a1cd7 93
closure-compiler 7cc748592670105f9d783b1b85f0f27e938db4ff 94
closure-compiler f6607996d6d3bd6820ce3848d147991b27600a12 95
closure-compiler 807aaf2569e9eb09761068c5aeb95654daea30d9 96
closure-compiler ee749e286b477f8d6f53ff5960a38453baf50f31 97
closure-compiler d1df970451b5a18956448097b3afb43f3a82263d 98
closure-compiler 8aa879a4eeb18cfc8d13e6c843a32b7f41ccd516 99
closure-compiler 6d00ac1a68612aade8a19d7ecc9b180f00ae5234 100
closure-compiler 369282db85567f1bf2c9635d0c0043d47f114814 101
closure-compiler d48c365ba8251057a71a2e2b7aabff640209e31b 102
closure-compiler 2f5cb1622371de540fe20dcbe0411651ec89f952 103
closure-compiler 67289ae4cbaba3ae70cd2e8fb92f3f2898039dfb 104
closure-compiler 113a08f59e8116fb11a7d4ceb11d5bb09b74ac3c 105
closure-compiler e609670bb56e0c7216c9476a5f6a5594e7f1acdb 106
closure-compiler 49e9565febba904484396e2aef7dbe86f55e9cc5 107
closure-compiler aae547f4d911dfbf42ca5a31aeb401ac83725a14 108
closure-compiler 7d26b7bcae8311f3c032bae3f1df27b590a4c174 109
closure-compiler 13fb7fcbcad87f8df63535491627bf7b01471064 110
closure-compiler 6f981f77e5bd9e2eecbd851a2a02933cdb9af0d8 111
closure-compiler b168c8822b2d3d12515ec6477812674c8805bcf3 112
closure-compiler 0fb76a81bbdd8ab84a00b8be2099abfb83c88668 113
closure-compiler 5f03c6817341d39d8dead76c7511fd6bb0b9009f 114
closure-compiler 4597738e8898f738c1f969fe90479728be81cc80 115
closure-compiler b80dfd3b0e5e4b490b7afb469320d18bac4520b4 116
closure-compiler 871bca1f36c5c06aa880ce21429da63a76f8f6e9 117
closure-compiler f17961ae4d3d7cf5ea291d82804239982d009ef7 118
closure-compiler 046e0b226e963bc584c2a6cd3c2b471777c5cc53 119
closure-compiler 0123fd5303c85d0d26add64aa2e19fee33f73aaa 120
closure-compiler 2aee36e667526ff8b0b5e6dad66506acee920ea6 121
closure-compiler a8a456b183c9600658bcb0c72091bae1a30a4fda 122
closure-compiler 8d11b8cc7a6183222b61c9bd398fed5448c59109 123
closure-compiler e7f4269d0289f4d47217207ec456219db8efe47c 124
closure-compiler 8cef00180a5cf67d047919c89668a6405030dbab 125
closure-compiler bd2803b6d9ab600906b262ae51cb3591160b5f3c 126
closure-compiler 211dc0161ae737f59cac22f30b048d56a059d14b 127
closure-compiler d82fb38b0121bf690cea58df293185c7e91ded9c 128
closure-compiler 79a8906570f44e5f519282bd32595985ed089aed 129
closure-compiler 9fac3ccd2fa9e6137584f079db1a6f5962a65cf4 130
closure-compiler 7f6700e2b54af3af409f3e8851a0d98a72beef4b 131
closure-compiler 5b9485903b5e7d926f49dc91b915a256df92591c 132
closure-compiler 4fbbc47cb18f241b23dd2d4bf9c15d45b2473523 133
joda-time 9a62b06be5d0df8e833ff8583398cca386608cac 1
joda-time 8612f9e5b88c1bea933ef9ab1e431f5db3006b48 2
joda-time 8d109fe1a999a11b4557536dd96f9210460a5936 3
joda-time 3ba9ba799b3261b7332a467a88be142c83b298fd 4
joda-time a6cb59ed2280ab0a32995fa8b5f1a7b0d47cb815 5
joda-time 28aeba952e838fb12c9b934ce6ef65658e45d7b2 6
joda-time 1adb1e69863dcd1ff282692bf1452c422528eeb9 7
joda-time 362ed1787724cda3ded37de2b0aa0f13adf0a66e 8
joda-time 96f586cb8dac7eee62e9be519a3eab125c47bb23 9
joda-time 3a413d7844c22dc6ddd50bf5d0d55ff3589e47ac 10
joda-time 57eb4cbb9044771cd46a9eee0c62016618930226 11
joda-time 77a6b3a44da7ae4af62e88b4b27eeefec2d768c2 12
joda-time 5d08a1cdbfa6ce86a0baf637493c464e91e91968 13
joda-time 2ea856328ed5710537778d755a5ff52a6831a2ee 14
joda-time 0cefc4c212e92e5dccdfa658785c419483317558 15
joda-time 706513d59425e7a9dc6bdb972f25b03b02e48558 16
joda-time a8913f5ad5dfde59263c981c9e9eb28e43fd2e00 17
joda-time b609d7d66d180f2eb537b27f5d605d0596e096ce 18
joda-time 82c5e4f9550e4df36e07b66f35f7c3e9d7eb5eba 19
joda-time a92450e88df85d6b7a0fa53517da46286c24f53f 20
joda-time 0973b46039c4db0be3a969d36c220dee1e1fb4da 21
joda-time 57c8aaf94b95323c295dcfec5f40f181846164e7 22
joda-time 14dedcbc04682c1b1b6c5ebe91bc930b79eeb572 23
joda-time d50efdf75a8daeced88d79b168f68d189fb87e13 24
joda-time 552be4b677ec30a34d04d234395ba1a8c7beaacf 25
joda-time c7a581e55fc988bd90fa4bb1b0acece5181b7c5f 26
joda-time e0559c503f65641b9546c37e7c84c866caf37e66 27
mockito 4e9d7607825c3c668fd43f19507bfead566c528c 1
mockito 80452c7a42777513c35fd30c4e12bcd7ee438fb9 2
mockito 3eec7451d6c83c280743c39b39c77a179abb30f9 3
mockito 42b391d4209024292b6101048389570e4ec36b2a 4
mockito 42a24dde02923185db3f79ae57e7819f7d70af55 5
mockito dc205824dbc289acbcde919e430176ad72da847f 6
mockito 0aaa36ce6924ca87f88e3723771413b42b80dc5a 7
mockito 5a03bf5d0c9aedac9cfbf074833167c1eca6439f 8
mockito 31f908029b8cd9b1f32bed3a41651b30ebb47b9f 9
mockito 1beeae39ac9f79d6a0db285dec311b78025ac062 10
mockito 1802cf79c482f2df29abb3d6735bcf0b16cedb7d 11
mockito 7a647a702c8af81ccf5d37b09c11529c6c0cb1b7 12
mockito 2037361bea014c9ac87393eb96a95374dff46182 13
mockito 9b2cf8072ece7c7629eff6037853b3e14ab5f524 14
mockito 81a380951402d2a158af115ed616ab36e94793b8 15
mockito 620f8faed0ad132961aae3a8671120e0929ce828 16
mockito 77cb2037314dd024eb53ffe2e9e06304088a2d53 17
mockito 8ceb04ad7317d8db24476b3b5f56ec9f658bc43a 18
mockito 110ffa80070bf54ab8efabdaaa27b193a93d6128 19
mockito 7616cd17d5e1dc7c3dee080c6969183821d4797a 20
mockito 8912aa176ea8414c2fc57df0d9b030b918630e9f 21
mockito d0c872e4b0837aef1e1635bf5f15d33c3d8d9698 22
mockito 82935114a09390cbab0c6b6df9b6fd6788bf55d9 23
mockito c17169c2cbb0b3d055d64ec2c4859122ca919c42 24
mockito a6ccf070a267e0a165b8efaaefa8938e787bb6a0 25
mockito af44738c7de74f24e37ea0c1242e73b07c3f4362 26
mockito a8ec4fa290bc1cdde060218d6bb811ac1fa6da6f 27
mockito 0464f5657dc8c76a4ff209a2cf7fd6312885cdc3 28
mockito 918f0a5aed6454b307004b6c9c86afc8e96353ff 29
mockito 3c924f80a4db3692a13341f0da4517052ab77a2a 30
mockito 62b6bdf44baeee172b2b1684835fb995bad2a47d 31
mockito 4f7060cc54bb50292ccfbf3b9fca27f0282abf51 32
mockito 5cb37751c0aba81d025dc5fe4f2f9a3bf86cc958 33
mockito e8cebe01abae49a09aadd6a26c6f7e2f90e5e772 34
mockito 27a2f515197d4688c4df82afb791bf8ce20a5504 35
mockito 84c142f56fe971ed52ecfe42b42bc0aa7bef8354 36
mockito c0222c2dbfbd2b053961a46e4c2a3973aec55a75 37
mockito c1f2c4e6b5bab4cfc004f22999e11e8ac140d377 38
Binary file not shown.
Binary file not shown.
+765
View File
@@ -0,0 +1,765 @@
introclass:checksum:08c7ea:006
introclass:checksum:08c7ea:007
introclass:checksum:08c7ea:010
introclass:checksum:08c7ea:011
introclass:checksum:08c7ea:012
introclass:checksum:08c7ea:013
introclass:checksum:30074a:007
introclass:checksum:3214e9:000
introclass:checksum:3214e9:001
introclass:checksum:3214e9:003
introclass:checksum:3214e9:004
introclass:checksum:3b2376:006
introclass:checksum:659a73:002
introclass:checksum:659a73:003
introclass:checksum:98d873:000
introclass:checksum:98d873:001
introclass:checksum:98d873:002
introclass:checksum:a0e3fd:000
introclass:checksum:a0e3fd:001
introclass:checksum:a0e3fd:002
introclass:checksum:a0e3fd:003
introclass:checksum:a0e3fd:004
introclass:checksum:a0e3fd:005
introclass:checksum:b6fd40:000
introclass:checksum:b6fd40:001
introclass:checksum:ca94e3:006
introclass:checksum:d43d32:000
introclass:checksum:d5cc7a:000
introclass:checksum:d5cc7a:001
introclass:checksum:d5cc7a:002
introclass:digits:070455:000
introclass:digits:070455:001
introclass:digits:08c7ea:000
introclass:digits:08c7ea:001
introclass:digits:0cdfa3:000
introclass:digits:0cdfa3:001
introclass:digits:0cdfa3:002
introclass:digits:0cdfa3:003
introclass:digits:0cea42:000
introclass:digits:0cea42:001
introclass:digits:0cea42:002
introclass:digits:1391c9:000
introclass:digits:1391c9:001
introclass:digits:1391c9:002
introclass:digits:1c2bb3:000
introclass:digits:1c2bb3:001
introclass:digits:1c2bb3:002
introclass:digits:1c2bb3:003
introclass:digits:1c2bb3:005
introclass:digits:1c2bb3:006
introclass:digits:295afd:000
introclass:digits:295afd:001
introclass:digits:295afd:003
introclass:digits:2af3c4:000
introclass:digits:2af3c4:001
introclass:digits:313d57:000
introclass:digits:317aa7:001
introclass:digits:317aa7:002
introclass:digits:317aa7:004
introclass:digits:3214e9:000
introclass:digits:387be3:002
introclass:digits:65e02c:004
introclass:digits:65e02c:008
introclass:digits:6e464f:003
introclass:digits:6e464f:004
introclass:digits:88394f:000
introclass:digits:88394f:001
introclass:digits:88394f:002
introclass:digits:88394f:003
introclass:digits:88394f:004
introclass:digits:8cddfd:005
introclass:digits:90a14c:004
introclass:digits:98d873:000
introclass:digits:98d873:001
introclass:digits:98d873:002
introclass:digits:98d873:003
introclass:digits:a0e3fd:003
introclass:digits:a3d177:000
introclass:digits:c9d718:001
introclass:digits:ca5057:000
introclass:digits:ca5057:001
introclass:digits:ca5057:002
introclass:digits:ca5057:003
introclass:digits:ca94e3:000
introclass:digits:ca94e3:001
introclass:digits:ca94e3:002
introclass:digits:cd2d9b:003
introclass:digits:cd2d9b:004
introclass:digits:d25c71:000
introclass:digits:d25c71:001
introclass:digits:d25c71:002
introclass:digits:d25c71:003
introclass:digits:d25c71:004
introclass:digits:d25c71:005
introclass:digits:d2b889:006
introclass:digits:d43d32:000
introclass:digits:d5059e:000
introclass:digits:d6364e:000
introclass:digits:d6364e:001
introclass:digits:d767ad:000
introclass:digits:d767ad:001
introclass:digits:d767ad:002
introclass:digits:d767ad:003
introclass:digits:d767ad:004
introclass:digits:d767ad:005
introclass:digits:d767ad:006
introclass:digits:d767ad:007
introclass:digits:d8b262:000
introclass:digits:f227ed:000
introclass:digits:f2997e:000
introclass:digits:f2997e:001
introclass:digits:f2997e:002
introclass:digits:f5b56c:000
introclass:grade:070455:001
introclass:grade:070455:002
introclass:grade:0cdfa3:003
introclass:grade:0cea42:000
introclass:grade:0cea42:001
introclass:grade:0cea42:002
introclass:grade:0cea42:003
introclass:grade:0cea42:004
introclass:grade:1b31fa:000
introclass:grade:1b31fa:001
introclass:grade:1b31fa:002
introclass:grade:1b31fa:003
introclass:grade:1c2bb3:000
introclass:grade:1c2bb3:001
introclass:grade:1c2bb3:002
introclass:grade:1c2bb3:003
introclass:grade:295afd:000
introclass:grade:295afd:001
introclass:grade:295afd:002
introclass:grade:295afd:003
introclass:grade:295afd:004
introclass:grade:295afd:005
introclass:grade:295afd:006
introclass:grade:295afd:007
introclass:grade:295afd:008
introclass:grade:295afd:009
introclass:grade:295afd:010
introclass:grade:295afd:011
introclass:grade:295afd:012
introclass:grade:30074a:001
introclass:grade:30074a:002
introclass:grade:30074a:003
introclass:grade:30074a:004
introclass:grade:317aa7:000
introclass:grade:317aa7:001
introclass:grade:317aa7:002
introclass:grade:317aa7:003
introclass:grade:317aa7:004
introclass:grade:36d800:000
introclass:grade:387be3:000
introclass:grade:3b2376:000
introclass:grade:3b2376:001
introclass:grade:3b2376:002
introclass:grade:3b2376:003
introclass:grade:3b2376:004
introclass:grade:3b2376:005
introclass:grade:3b2376:006
introclass:grade:3b2376:007
introclass:grade:3cf6d3:001
introclass:grade:3cf6d3:002
introclass:grade:3cf6d3:003
introclass:grade:3cf6d3:004
introclass:grade:3cf6d3:005
introclass:grade:3cf6d3:006
introclass:grade:3cf6d3:007
introclass:grade:3cf6d3:008
introclass:grade:3cf6d3:009
introclass:grade:3cf6d3:010
introclass:grade:3cf6d3:011
introclass:grade:3cf6d3:012
introclass:grade:3cf6d3:013
introclass:grade:489253:000
introclass:grade:489253:001
introclass:grade:489253:002
introclass:grade:489253:003
introclass:grade:489253:004
introclass:grade:489253:005
introclass:grade:489253:006
introclass:grade:489253:007
introclass:grade:489253:008
introclass:grade:489253:009
introclass:grade:489253:010
introclass:grade:489253:011
introclass:grade:48b829:000
introclass:grade:531924:000
introclass:grade:531924:001
introclass:grade:5b504b:000
introclass:grade:68ea5d:000
introclass:grade:6e464f:000
introclass:grade:75c98d:001
introclass:grade:75c98d:002
introclass:grade:75c98d:003
introclass:grade:75c98d:004
introclass:grade:769cd8:000
introclass:grade:833bd4:000
introclass:grade:833bd4:001
introclass:grade:833bd4:002
introclass:grade:833bd4:003
introclass:grade:89b1a7:000
introclass:grade:89b1a7:001
introclass:grade:89b1a7:002
introclass:grade:89b1a7:003
introclass:grade:89b1a7:004
introclass:grade:89b1a7:005
introclass:grade:8ce634:000
introclass:grade:8ce634:001
introclass:grade:9013bd:000
introclass:grade:908348:009
introclass:grade:908348:010
introclass:grade:908348:011
introclass:grade:908348:013
introclass:grade:92b7dd:002
introclass:grade:93f87b:013
introclass:grade:93f87b:014
introclass:grade:93f87b:015
introclass:grade:93f87b:016
introclass:grade:953627:006
introclass:grade:953627:007
introclass:grade:953627:008
introclass:grade:953627:009
introclass:grade:953627:010
introclass:grade:953627:011
introclass:grade:953627:012
introclass:grade:953627:013
introclass:grade:953627:014
introclass:grade:953627:015
introclass:grade:953627:016
introclass:grade:953627:017
introclass:grade:953627:018
introclass:grade:97f6b1:000
introclass:grade:98d873:004
introclass:grade:9c9308:000
introclass:grade:9c9308:001
introclass:grade:9c9308:002
introclass:grade:9c9308:003
introclass:grade:9c9308:004
introclass:grade:9c9308:005
introclass:grade:9c9308:006
introclass:grade:9c9308:007
introclass:grade:a0e3fd:000
introclass:grade:a0e3fd:001
introclass:grade:a0e3fd:002
introclass:grade:a0e3fd:003
introclass:grade:a0e3fd:004
introclass:grade:a0e3fd:005
introclass:grade:a0e3fd:009
introclass:grade:a0e3fd:010
introclass:grade:a0e3fd:011
introclass:grade:a0e3fd:012
introclass:grade:aaceaf:000
introclass:grade:aaceaf:001
introclass:grade:aaceaf:002
introclass:grade:aaceaf:003
introclass:grade:aaceaf:004
introclass:grade:aaceaf:005
introclass:grade:aaceaf:006
introclass:grade:af81ff:000
introclass:grade:af81ff:001
introclass:grade:af81ff:002
introclass:grade:af81ff:003
introclass:grade:af81ff:004
introclass:grade:af81ff:005
introclass:grade:af81ff:006
introclass:grade:af81ff:007
introclass:grade:af81ff:008
introclass:grade:af81ff:009
introclass:grade:b1924d:000
introclass:grade:b1924d:001
introclass:grade:b1924d:002
introclass:grade:b1924d:003
introclass:grade:b6fd40:000
introclass:grade:bfad6d:000
introclass:grade:bfad6d:001
introclass:grade:c9d718:000
introclass:grade:c9d718:001
introclass:grade:c9d718:002
introclass:grade:c9d718:003
introclass:grade:c9d718:004
introclass:grade:ca94e3:000
introclass:grade:cb243b:000
introclass:grade:cb243b:001
introclass:grade:cd2d9b:001
introclass:grade:cd2d9b:002
introclass:grade:cd2d9b:003
introclass:grade:cd2d9b:004
introclass:grade:cd2d9b:005
introclass:grade:cd2d9b:006
introclass:grade:cd2d9b:007
introclass:grade:cd2d9b:008
introclass:grade:cd2d9b:009
introclass:grade:cd2d9b:010
introclass:grade:cd2d9b:011
introclass:grade:cd2d9b:012
introclass:grade:cd2d9b:013
introclass:grade:d009aa:000
introclass:grade:d009aa:001
introclass:grade:d009aa:002
introclass:grade:d009aa:003
introclass:grade:d009aa:004
introclass:grade:d009aa:005
introclass:grade:d6364e:000
introclass:grade:d6364e:001
introclass:grade:d6364e:002
introclass:grade:d6364e:003
introclass:grade:d6364e:004
introclass:grade:d6364e:005
introclass:grade:d6364e:006
introclass:grade:d6364e:007
introclass:grade:d8b262:000
introclass:grade:d8b262:001
introclass:grade:dc11fb:000
introclass:grade:dccb12:001
introclass:grade:e23b96:000
introclass:grade:e23b96:001
introclass:grade:e23b96:002
introclass:grade:e23b96:003
introclass:grade:e23b96:004
introclass:grade:e23b96:005
introclass:grade:ee1f20:000
introclass:grade:ee1f20:001
introclass:grade:f5b56c:000
introclass:grade:f5b56c:001
introclass:grade:f5b56c:002
introclass:grade:f5b56c:003
introclass:grade:f5b56c:004
introclass:grade:f5b56c:005
introclass:grade:f5b56c:006
introclass:grade:f5b56c:007
introclass:grade:f5b56c:008
introclass:grade:f5b56c:009
introclass:grade:f5b56c:010
introclass:grade:f5b56c:011
introclass:grade:f5b56c:012
introclass:grade:fe9d5f:000
introclass:grade:fe9d5f:001
introclass:grade:fe9d5f:002
introclass:grade:fe9d5f:003
introclass:grade:fe9d5f:004
introclass:median:070455:000
introclass:median:070455:001
introclass:median:0cdfa3:002
introclass:median:0cdfa3:003
introclass:median:0cdfa3:004
introclass:median:0cea42:000
introclass:median:0cea42:001
introclass:median:0cea42:002
introclass:median:0cea42:003
introclass:median:0cea42:004
introclass:median:0cea42:005
introclass:median:0cea42:006
introclass:median:0cea42:007
introclass:median:0cea42:008
introclass:median:15cb07:001
introclass:median:15cb07:002
introclass:median:15cb07:003
introclass:median:15cb07:004
introclass:median:1b31fa:000
introclass:median:1b31fa:001
introclass:median:1b31fa:002
introclass:median:1c2bb3:000
introclass:median:1c2bb3:001
introclass:median:1c2bb3:002
introclass:median:2c1556:000
introclass:median:30074a:000
introclass:median:30074a:001
introclass:median:30074a:002
introclass:median:317aa7:000
introclass:median:317aa7:001
introclass:median:317aa7:002
introclass:median:317aa7:003
introclass:median:3b2376:000
introclass:median:3b2376:001
introclass:median:3b2376:002
introclass:median:3b2376:003
introclass:median:3b2376:004
introclass:median:3b2376:005
introclass:median:3b2376:006
introclass:median:3cf6d3:000
introclass:median:3cf6d3:001
introclass:median:3cf6d3:002
introclass:median:3cf6d3:003
introclass:median:3cf6d3:004
introclass:median:3cf6d3:005
introclass:median:3cf6d3:006
introclass:median:3cf6d3:007
introclass:median:489253:007
introclass:median:593b95:000
introclass:median:593b95:001
introclass:median:593b95:002
introclass:median:593b95:003
introclass:median:593b95:004
introclass:median:593b95:005
introclass:median:593b95:006
introclass:median:593b95:007
introclass:median:68eb0b:000
introclass:median:89b1a7:002
introclass:median:89b1a7:003
introclass:median:89b1a7:005
introclass:median:89b1a7:006
introclass:median:89b1a7:007
introclass:median:89b1a7:008
introclass:median:89b1a7:009
introclass:median:89b1a7:010
introclass:median:8c7dfb:000
introclass:median:8c7dfb:001
introclass:median:8c7dfb:002
introclass:median:8c7dfb:003
introclass:median:8c7dfb:004
introclass:median:8c7dfb:005
introclass:median:8c7dfb:006
introclass:median:8c7dfb:007
introclass:median:8c7dfb:008
introclass:median:9013bd:000
introclass:median:908348:000
introclass:median:908348:001
introclass:median:908348:002
introclass:median:908348:003
introclass:median:908348:004
introclass:median:908348:005
introclass:median:908348:006
introclass:median:908348:007
introclass:median:908348:008
introclass:median:908348:009
introclass:median:908348:010
introclass:median:908348:011
introclass:median:908348:012
introclass:median:908348:013
introclass:median:908348:014
introclass:median:908348:015
introclass:median:90a14c:000
introclass:median:90a14c:001
introclass:median:90a14c:002
introclass:median:93f87b:001
introclass:median:93f87b:002
introclass:median:93f87b:003
introclass:median:93f87b:004
introclass:median:93f87b:005
introclass:median:93f87b:006
introclass:median:93f87b:007
introclass:median:93f87b:008
introclass:median:93f87b:009
introclass:median:93f87b:010
introclass:median:93f87b:011
introclass:median:93f87b:012
introclass:median:93f87b:013
introclass:median:93f87b:014
introclass:median:93f87b:015
introclass:median:93f87b:016
introclass:median:953627:000
introclass:median:953627:001
introclass:median:953627:002
introclass:median:953627:003
introclass:median:97f6b1:000
introclass:median:97f6b1:001
introclass:median:97f6b1:003
introclass:median:98d873:000
introclass:median:98d873:001
introclass:median:9c9308:000
introclass:median:9c9308:001
introclass:median:9c9308:002
introclass:median:9c9308:003
introclass:median:9c9308:004
introclass:median:9c9308:006
introclass:median:9c9308:007
introclass:median:9c9308:008
introclass:median:9c9308:009
introclass:median:9c9308:012
introclass:median:aaceaf:000
introclass:median:aaceaf:001
introclass:median:aaceaf:002
introclass:median:aaceaf:003
introclass:median:aaceaf:004
introclass:median:aaceaf:005
introclass:median:aaceaf:006
introclass:median:af81ff:000
introclass:median:af81ff:001
introclass:median:af81ff:002
introclass:median:af81ff:003
introclass:median:af81ff:004
introclass:median:af81ff:006
introclass:median:af81ff:007
introclass:median:b6fd40:000
introclass:median:b6fd40:001
introclass:median:c716ee:000
introclass:median:c716ee:001
introclass:median:c716ee:002
introclass:median:d009aa:000
introclass:median:d009aa:001
introclass:median:d009aa:002
introclass:median:d12048:000
introclass:median:d2b889:000
introclass:median:d4aae1:000
introclass:median:d6364e:005
introclass:median:d6364e:006
introclass:median:e9c620:000
introclass:median:e9c620:001
introclass:median:fcf701:000
introclass:median:fcf701:001
introclass:median:fcf701:002
introclass:median:fe9d5f:000
introclass:median:fe9d5f:001
introclass:median:fe9d5f:002
introclass:smallest:070455:000
introclass:smallest:070455:001
introclass:smallest:070455:002
introclass:smallest:1391c9:002
introclass:smallest:1391c9:003
introclass:smallest:1391c9:004
introclass:smallest:1391c9:005
introclass:smallest:15cb07:002
introclass:smallest:15cb07:003
introclass:smallest:15cb07:004
introclass:smallest:15cb07:005
introclass:smallest:15cb07:006
introclass:smallest:15cb07:007
introclass:smallest:1b31fa:003
introclass:smallest:1b31fa:004
introclass:smallest:1b31fa:005
introclass:smallest:1b31fa:006
introclass:smallest:2694af:000
introclass:smallest:30074a:000
introclass:smallest:30074a:001
introclass:smallest:30074a:002
introclass:smallest:30074a:003
introclass:smallest:30074a:004
introclass:smallest:30074a:005
introclass:smallest:30074a:006
introclass:smallest:30074a:007
introclass:smallest:30074a:008
introclass:smallest:30074a:009
introclass:smallest:346b1d:002
introclass:smallest:346b1d:003
introclass:smallest:346b1d:004
introclass:smallest:346b1d:005
introclass:smallest:346b1d:006
introclass:smallest:346b1d:007
introclass:smallest:346b1d:008
introclass:smallest:346b1d:009
introclass:smallest:346b1d:010
introclass:smallest:346b1d:011
introclass:smallest:36d800:000
introclass:smallest:36d800:001
introclass:smallest:36d800:002
introclass:smallest:36d800:003
introclass:smallest:36d800:004
introclass:smallest:36d800:005
introclass:smallest:3b2376:000
introclass:smallest:3b2376:001
introclass:smallest:3b2376:002
introclass:smallest:3b2376:003
introclass:smallest:3b2376:004
introclass:smallest:3b2376:008
introclass:smallest:3cf6d3:003
introclass:smallest:3cf6d3:004
introclass:smallest:3cf6d3:005
introclass:smallest:3cf6d3:006
introclass:smallest:48b829:000
introclass:smallest:48b829:001
introclass:smallest:5a5683:000
introclass:smallest:5a5683:001
introclass:smallest:5a5683:002
introclass:smallest:68eb0b:000
introclass:smallest:68eb0b:001
introclass:smallest:68eb0b:002
introclass:smallest:6aaeaf:000
introclass:smallest:6aaeaf:001
introclass:smallest:75c98d:000
introclass:smallest:769cd8:000
introclass:smallest:769cd8:001
introclass:smallest:769cd8:002
introclass:smallest:769cd8:003
introclass:smallest:769cd8:004
introclass:smallest:769cd8:006
introclass:smallest:769cd8:010
introclass:smallest:818f8c:002
introclass:smallest:818f8c:003
introclass:smallest:846021:000
introclass:smallest:846021:001
introclass:smallest:846021:002
introclass:smallest:846021:003
introclass:smallest:846021:004
introclass:smallest:846021:005
introclass:smallest:846021:006
introclass:smallest:846021:007
introclass:smallest:846021:008
introclass:smallest:846021:009
introclass:smallest:846021:010
introclass:smallest:846021:011
introclass:smallest:88394f:006
introclass:smallest:88394f:007
introclass:smallest:88394f:008
introclass:smallest:88394f:009
introclass:smallest:8c7dfb:000
introclass:smallest:8c7dfb:001
introclass:smallest:8c7dfb:002
introclass:smallest:8c7dfb:003
introclass:smallest:8c7dfb:004
introclass:smallest:8c7dfb:005
introclass:smallest:8c7dfb:006
introclass:smallest:8c7dfb:007
introclass:smallest:8c7dfb:008
introclass:smallest:8ce634:000
introclass:smallest:8ce634:001
introclass:smallest:9013bd:000
introclass:smallest:9013bd:001
introclass:smallest:908348:004
introclass:smallest:908348:005
introclass:smallest:90a14c:000
introclass:smallest:90a14c:001
introclass:smallest:93f87b:000
introclass:smallest:93f87b:001
introclass:smallest:953627:009
introclass:smallest:97f6b1:000
introclass:smallest:97f6b1:001
introclass:smallest:97f6b1:002
introclass:smallest:97f6b1:003
introclass:smallest:98d873:000
introclass:smallest:98d873:001
introclass:smallest:98d873:002
introclass:smallest:a0e3fd:000
introclass:smallest:a0e3fd:001
introclass:smallest:a0e3fd:002
introclass:smallest:a0e3fd:003
introclass:smallest:a0e3fd:004
introclass:smallest:a0e3fd:005
introclass:smallest:a0e3fd:006
introclass:smallest:af81ff:000
introclass:smallest:af81ff:001
introclass:smallest:b1924d:000
introclass:smallest:b1924d:001
introclass:smallest:b1924d:002
introclass:smallest:c868b3:000
introclass:smallest:c868b3:001
introclass:smallest:c868b3:002
introclass:smallest:c9d718:000
introclass:smallest:c9d718:001
introclass:smallest:c9d718:002
introclass:smallest:c9d718:003
introclass:smallest:cb243b:000
introclass:smallest:d009aa:001
introclass:smallest:dedc2a:000
introclass:smallest:e9c620:000
introclass:smallest:ea67b8:000
introclass:smallest:ea67b8:001
introclass:smallest:ea67b8:002
introclass:smallest:ea67b8:003
introclass:smallest:ee1f20:006
introclass:smallest:f2997e:000
introclass:smallest:f2997e:001
introclass:smallest:f2997e:002
introclass:smallest:f8d57d:000
introclass:smallest:f8d57d:001
introclass:smallest:f8d57d:002
introclass:smallest:fe9d5f:001
introclass:syllables:0cea42:000
introclass:syllables:0cea42:001
introclass:syllables:0cea42:002
introclass:syllables:0cea42:003
introclass:syllables:0cea42:004
introclass:syllables:0cea42:005
introclass:syllables:0cea42:006
introclass:syllables:2af3c4:000
introclass:syllables:2af3c4:001
introclass:syllables:2af3c4:002
introclass:syllables:2af3c4:003
introclass:syllables:36d800:000
introclass:syllables:36d800:001
introclass:syllables:36d800:002
introclass:syllables:36d800:003
introclass:syllables:36d800:004
introclass:syllables:37593d:000
introclass:syllables:37593d:001
introclass:syllables:37593d:002
introclass:syllables:37593d:003
introclass:syllables:37593d:004
introclass:syllables:37593d:005
introclass:syllables:37593d:006
introclass:syllables:38eb99:001
introclass:syllables:38eb99:002
introclass:syllables:38eb99:003
introclass:syllables:38eb99:004
introclass:syllables:489253:002
introclass:syllables:489253:003
introclass:syllables:489253:004
introclass:syllables:489253:005
introclass:syllables:489253:006
introclass:syllables:489253:007
introclass:syllables:593b95:000
introclass:syllables:593b95:001
introclass:syllables:593b95:002
introclass:syllables:593b95:003
introclass:syllables:68eb0b:000
introclass:syllables:68eb0b:001
introclass:syllables:68eb0b:002
introclass:syllables:68eb0b:003
introclass:syllables:68eb0b:004
introclass:syllables:68eb0b:005
introclass:syllables:68eb0b:006
introclass:syllables:68eb0b:007
introclass:syllables:68eb0b:008
introclass:syllables:68eb0b:009
introclass:syllables:818f8c:000
introclass:syllables:818f8c:001
introclass:syllables:818f8c:002
introclass:syllables:818f8c:003
introclass:syllables:818f8c:004
introclass:syllables:818f8c:005
introclass:syllables:818f8c:006
introclass:syllables:818f8c:007
introclass:syllables:88394f:000
introclass:syllables:88394f:001
introclass:syllables:88394f:002
introclass:syllables:88394f:003
introclass:syllables:88394f:004
introclass:syllables:88394f:005
introclass:syllables:9013bd:000
introclass:syllables:90a14c:000
introclass:syllables:90a14c:001
introclass:syllables:90a14c:002
introclass:syllables:93f87b:005
introclass:syllables:97f6b1:000
introclass:syllables:99cbb4:000
introclass:syllables:99cbb4:001
introclass:syllables:99cbb4:002
introclass:syllables:99cbb4:003
introclass:syllables:99cbb4:004
introclass:syllables:99cbb4:005
introclass:syllables:99cbb4:006
introclass:syllables:b1924d:000
introclass:syllables:b1924d:001
introclass:syllables:b1924d:002
introclass:syllables:b1924d:003
introclass:syllables:b1924d:004
introclass:syllables:b1924d:005
introclass:syllables:b6fd40:000
introclass:syllables:bfad6d:001
introclass:syllables:ca5057:000
introclass:syllables:ca5057:001
introclass:syllables:ca5057:002
introclass:syllables:ca5057:003
introclass:syllables:ca5057:004
introclass:syllables:cd2d9b:001
introclass:syllables:cd2d9b:002
introclass:syllables:cd2d9b:003
introclass:syllables:cd2d9b:004
introclass:syllables:d12048:000
introclass:syllables:d5059e:000
introclass:syllables:d5059e:001
introclass:syllables:d5059e:002
introclass:syllables:dde0a4:006
introclass:syllables:dde0a4:007
introclass:syllables:dde0a4:008
introclass:syllables:dde0a4:009
introclass:syllables:e9c74e:000
introclass:syllables:f5b56c:000
introclass:syllables:f5b56c:001
introclass:syllables:f5b56c:002
introclass:syllables:f5b56c:003
introclass:syllables:f8d57d:002
introclass:syllables:fcf701:002
introclass:syllables:fcf701:003
introclass:syllables:fe9d5f:000
File diff suppressed because it is too large Load Diff
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
#source activate redisEnv
#redis-server --dir $1 --dbfilename $2 --port $3
redis-server $1/redis.conf --dir $1 --dbfilename $2 --port $3 --daemonize yes
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
source activate redisEnv
redis-cli -p $1 shutdown save
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
file=$1
port=$2
pairName=$3
awk -F, '{ print "SADD pairs", "\"'$pairName'_"$1"_"$2"\"" }' "$file" | sed s/$/$'\r'/ | redis-cli -p $port --pipe #--pipe-timeout 0
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
file=$1
port=$2
pairName=$3
awk -F, '{ print "SADD", "compare","\"'$pairName'/"$1"/"$2"\"",0 }' "$file" | sed s/$/$'\r'/ | redis-cli -p $port --pipe #--pipe-timeout 0
Binary file not shown.
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
source activate fixminerEnv
bugzood -p $1
+425
View File
@@ -0,0 +1,425 @@
cluster,memberCount
ExpressionStatement-3-0-0,539
ExpressionStatement-4-3-0,200
VariableDeclarationStatement-3-0-0,191
FieldDeclaration-2-0-0,185
FieldDeclaration-6-0-0,182
FieldDeclaration-8-0-0,158
ExpressionStatement-2-0-0,148
ExpressionStatement-2-0-1,134
VariableDeclarationStatement-5-2-0,114
VariableDeclarationStatement-2-0-0,109
MethodDeclaration-2-0-0,106
VariableDeclarationStatement-7-0-0,105
FieldDeclaration-3-0-0,99
ExpressionStatement-5-6-0,96
VariableDeclarationStatement-4-0-0,90
IfStatement-6-0-0,81
ExpressionStatement-2-0-2,77
ExpressionStatement-7-1-0,72
SwitchCase-2-0-0,70
MethodDeclaration-2-0-1,66
ReturnStatement-2-0-0,62
TypeDeclaration-5-0-0,61
ReturnStatement-2-0-1,61
FieldDeclaration-2-0-1,60
FieldDeclaration-5-2-0,56
ReturnStatement-2-0-3,56
CatchClause-3-0-0,54
MethodDeclaration-14-0-0,53
ExpressionStatement-2-0-3,52
FieldDeclaration-11-0-0,48
ReturnStatement-3-3-0,46
IfStatement-5-3-0,46
VariableDeclarationStatement-7-0-2,45
ReturnStatement-2-0-2,45
TypeDeclaration-2-1-1,44
MethodDeclaration-6-2-0,44
ReturnStatement-4-2-0,42
VariableDeclarationStatement-7-0-3,42
ThrowStatement-4-0-0,41
MethodDeclaration-2-0-2,36
ExpressionStatement-5-6-1,35
VariableDeclarationStatement-4-0-1,35
VariableDeclarationStatement-11-0-0,30
TypeDeclaration-4-0-0,30
IfStatement-3-1-0,30
VariableDeclarationStatement-5-2-2,30
ThrowStatement-3-1-0,30
MethodDeclaration-4-1-0,29
VariableDeclarationStatement-7-0-6,28
FieldDeclaration-9-0-1,28
ReturnStatement-4-2-1,28
VariableDeclarationStatement-7-0-1,27
SwitchCase-4-0-0,27
TypeDeclaration-2-1-0,26
SwitchCase-2-0-1,26
MethodDeclaration-3-2-0,26
IfStatement-5-3-1,25
FieldDeclaration-7-4-0,24
FieldDeclaration-2-0-2,24
FieldDeclaration-10-0-0,23
ExpressionStatement-5-6-4,22
FieldDeclaration-6-0-1,22
ExpressionStatement-5-6-2,21
VariableDeclarationStatement-5-2-1,21
ReturnStatement-2-0-4,21
VariableDeclarationStatement-7-0-5,20
VariableDeclarationStatement-2-0-1,20
IfStatement-4-4-0,20
ExpressionStatement-2-0-5,19
FieldDeclaration-8-0-1,19
MethodDeclaration-11-1-0,18
ReturnStatement-2-0-6,18
ExpressionStatement-6-2-0,17
ExpressionStatement-5-6-3,16
VariableDeclarationStatement-5-2-4,16
MethodDeclaration-13-0-0,16
ExpressionStatement-2-0-8,15
SwitchCase-2-0-2,15
ExpressionStatement-6-2-2,15
FieldDeclaration-5-2-1,15
ExpressionStatement-3-0-1,15
ReturnStatement-2-0-5,14
TypeDeclaration-2-1-2,14
ExpressionStatement-2-0-10,14
VariableDeclarationStatement-11-0-1,14
ExpressionStatement-4-3-1,14
VariableDeclarationStatement-10-3-0,14
ExpressionStatement-6-2-3,14
VariableDeclarationStatement-5-2-3,14
ExpressionStatement-2-0-6,13
VariableDeclarationStatement-7-0-9,13
TryStatement-7-0-0,13
ExpressionStatement-2-0-4,13
EnhancedForStatement-2-0-1,12
IfStatement-8-5-0,12
VariableDeclarationStatement-7-0-4,12
IfStatement-7-5-1,11
VariableDeclarationStatement-8-11-1,11
TryStatement-46-0-0,11
ThrowStatement-2-0-0,11
ThrowStatement-5-2-1,11
SynchronizedStatement-4-0-0,11
SynchronizedStatement-2-0-0,11
TypeDeclaration-3-1-0,11
ExpressionStatement-9-2-0,11
TypeDeclaration-5-0-1,10
TryStatement-2-0-0,10
ReturnStatement-7-4-0,9
IfStatement-9-0-2,9
CatchClause-6-2-0,9
EnhancedForStatement-5-1-0,9
VariableDeclarationStatement-4-0-4,9
VariableDeclarationStatement-4-0-3,9
MethodDeclaration-17-0-0,9
ReturnStatement-2-0-7,9
MethodDeclaration-4-1-1,8
ThrowStatement-6-0-0,8
IfStatement-13-3-0,8
VariableDeclarationStatement-6-3-0,8
MethodDeclaration-7-2-0,8
ThrowStatement-2-0-1,8
TypeDeclaration-6-0-0,8
ExpressionStatement-6-2-1,8
EnhancedForStatement-3-0-0,8
ExpressionStatement-2-0-9,8
FieldDeclaration-12-0-0,8
VariableDeclarationStatement-4-0-6,7
ReturnStatement-6-2-0,7
CatchClause-4-0-1,7
ExpressionStatement-6-2-5,7
IfStatement-4-4-1,7
FieldDeclaration-13-0-0,7
ReturnStatement-4-2-2,7
SynchronizedStatement-5-0-0,6
TryStatement-21-0-0,6
IfStatement-9-0-1,6
VariableDeclarationStatement-19-1-0,6
IfStatement-6-0-1,6
TryStatement-5-0-0,6
MethodDeclaration-53-0-0,6
VariableDeclarationStatement-11-0-2,6
ThrowStatement-5-2-0,6
ExpressionStatement-6-2-4,6
VariableDeclarationStatement-14-2-0,6
SuperConstructorInvocation-2-0-0,6
EnhancedForStatement-6-1-0,6
CatchClause-11-0-0,6
SwitchCase-3-0-0,6
EnhancedForStatement-7-0-0,6
EnhancedForStatement-2-0-0,5
ThrowStatement-5-2-2,5
FieldDeclaration-9-0-2,5
IfStatement-12-7-0,5
TryStatement-10-2-0,5
IfStatement-2-4-0,5
FieldDeclaration-19-0-0,5
FieldDeclaration-11-0-1,5
VariableDeclarationStatement-7-0-8,5
ExpressionStatement-2-0-7,5
ExpressionStatement-2-0-13,5
ExpressionStatement-13-11-0,5
CatchClause-13-0-0,5
ExpressionStatement-4-3-2,5
VariableDeclarationStatement-4-0-7,5
ThrowStatement-2-0-2,5
MethodDeclaration-8-1-0,5
AssertStatement-2-0-0,5
MethodDeclaration-10-3-0,5
VariableDeclarationStatement-7-0-7,5
ExpressionStatement-8-25-0,5
VariableDeclarationStatement-3-0-1,5
CatchClause-4-0-2,5
CatchClause-16-1-0,4
CatchClause-8-0-0,4
ForStatement-22-1-0,4
ForStatement-27-0-0,4
MethodDeclaration-32-0-0,4
CatchClause-9-1-0,4
FieldDeclaration-7-4-1,4
IfStatement-14-4-0,4
ExpressionStatement-5-6-6,4
ExpressionStatement-5-6-5,4
MethodDeclaration-23-0-0,4
IfStatement-53-0-0,4
SwitchCase-5-0-0,4
WhileStatement-3-0-0,4
SynchronizedStatement-11-0-0,4
VariableDeclarationStatement-4-0-8,4
EnhancedForStatement-4-1-0,4
ReturnStatement-5-15-1,4
VariableDeclarationStatement-18-0-0,4
VariableDeclarationStatement-4-0-2,4
VariableDeclarationStatement-4-0-5,4
FieldDeclaration-15-0-0,4
IfStatement-7-5-2,4
TryStatement-4-2-0,4
TryStatement-28-0-0,4
FieldDeclaration-9-0-0,4
ExpressionStatement-28-0-0,4
IfStatement-10-30-0,4
TypeDeclaration-4-0-1,4
VariableDeclarationStatement-5-2-5,4
MethodDeclaration-15-1-0,4
IfStatement-37-0-0,4
MethodDeclaration-20-4-0,4
MethodDeclaration-5-8-0,4
FieldDeclaration-14-4-0,4
ExpressionStatement-23-0-0,3
EnumDeclaration-9-0-0,3
ExpressionStatement-2-0-11,3
MethodDeclaration-16-5-0,3
ExpressionStatement-12-6-0,3
ExpressionStatement-3-0-3,3
ExpressionStatement-3-0-4,3
MethodDeclaration-12-9-0,3
ExpressionStatement-8-25-1,3
MethodDeclaration-22-2-0,3
MethodDeclaration-46-0-0,3
IfStatement-9-0-3,3
ExpressionStatement-2-0-14,3
TypeDeclaration-8-0-0,3
ExpressionStatement-10-9-0,3
IfStatement-9-0-0,3
EnhancedForStatement-18-0-0,3
IfStatement-69-0-0,3
SwitchStatement-2-0-0,3
SynchronizedStatement-2-0-1,3
SynchronizedStatement-3-5-0,3
ThrowStatement-8-0-0,3
ReturnStatement-5-15-0,3
ReturnStatement-15-0-0,3
ReturnStatement-4-2-3,3
FieldDeclaration-6-0-2,3
TryStatement-3-0-0,3
FieldDeclaration-17-0-0,3
CatchClause-6-2-1,3
CatchClause-7-0-0,3
CatchClause-20-0-0,3
FieldDeclaration-4-3-0,3
VariableDeclarationStatement-5-2-7,3
VariableDeclarationStatement-13-2-0,3
VariableDeclarationStatement-12-1-0,3
VariableDeclarationStatement-15-2-0,3
FieldDeclaration-3-0-2,3
VariableDeclarationStatement-8-11-0,3
IfStatement-7-5-0,3
AssertStatement-3-0-0,3
IfStatement-3-1-1,3
IfStatement-19-1-0,3
WhileStatement-12-0-0,3
ForStatement-3-0-0,3
ExpressionStatement-14-2-0,3
TryStatement-16-0-0,3
IfStatement-15-1-0,3
TryStatement-8-0-0,3
IfStatement-46-0-0,3
TryStatement-38-0-0,3
ExpressionStatement-19-4-0,3
IfStatement-17-6-0,3
ThrowStatement-9-1-0,2
TryStatement-6-0-0,2
TryStatement-14-0-0,2
ExpressionStatement-24-0-0,2
ExpressionStatement-2-0-15,2
ExpressionStatement-21-0-0,2
TryStatement-11-4-0,2
ExpressionStatement-8-25-2,2
ExpressionStatement-2-0-12,2
FieldDeclaration-4-3-1,2
TryStatement-18-2-0,2
TryStatement-20-0-0,2
ExpressionStatement-26-1-0,2
TryStatement-24-0-0,2
TryStatement-13-1-0,2
FieldDeclaration-3-0-1,2
ExpressionStatement-5-6-7,2
TryStatement-12-1-0,2
TryStatement-6-0-1,2
FieldDeclaration-6-0-3,2
ExpressionStatement-4-3-3,2
ThrowStatement-10-0-0,2
ExpressionStatement-3-0-6,2
TryStatement-8-0-1,2
ExpressionStatement-2-0-16,2
ExpressionStatement-15-3-0,2
TryStatement-25-0-0,2
ThrowStatement-7-5-0,2
ExpressionStatement-3-0-2,2
ExpressionStatement-2-0-17,2
FieldDeclaration-16-0-0,2
ThrowStatement-12-0-0,2
ExpressionStatement-3-0-5,2
ThrowStatement-2-0-3,2
ExpressionStatement-2-0-18,2
TryStatement-6-0-2,2
FieldDeclaration-18-0-0,2
ExpressionStatement-2-0-19,2
TryStatement-15-0-0,2
VariableDeclarationStatement-20-0-0,2
ExpressionStatement-17-3-0,2
SynchronizedStatement-12-0-0,2
ReturnStatement-10-5-0,2
ReturnStatement-8-9-0,2
ReturnStatement-23-0-0,2
ReturnStatement-4-2-4,2
ReturnStatement-12-2-0,2
ReturnStatement-2-0-8,2
ReturnStatement-13-1-0,2
ReturnStatement-5-15-2,2
ReturnStatement-14-0-0,2
ReturnStatement-22-0-0,2
SynchronizedStatement-9-0-0,2
SynchronizedStatement-7-0-0,2
SynchronizedStatement-6-3-0,2
IfStatement-20-2-0,2
IfStatement-21-1-0,2
IfStatement-18-10-0,2
IfStatement-27-1-0,2
IfStatement-11-0-0,2
IfStatement-11-0-1,2
IfStatement-11-0-2,2
IfStatement-7-5-4,2
IfStatement-7-5-3,2
IfStatement-29-0-0,2
IfStatement-16-1-0,2
IfStatement-74-0-0,2
IfStatement-6-0-3,2
IfStatement-6-0-2,2
IfStatement-28-1-0,2
ReturnStatement-11-2-0,2
ReturnStatement-9-3-0,2
TypeDeclaration-5-0-2,2
TypeDeclaration-6-0-1,2
VariableDeclarationStatement-9-34-0,2
VariableDeclarationStatement-11-0-3,2
VariableDeclarationStatement-7-0-10,2
VariableDeclarationStatement-16-8-0,2
VariableDeclarationStatement-17-0-0,2
VariableDeclarationStatement-8-11-4,2
VariableDeclarationStatement-8-11-3,2
VariableDeclarationStatement-8-11-2,2
VariableDeclarationStatement-4-0-9,2
VariableDeclarationStatement-3-0-2,2
VariableDeclarationStatement-5-2-9,2
VariableDeclarationStatement-5-2-6,2
VariableDeclarationStatement-5-2-8,2
SuperConstructorInvocation-6-0-0,2
SuperConstructorInvocation-4-0-0,2
SuperConstructorInvocation-2-0-1,2
CatchClause-29-0-0,2
CatchClause-17-1-0,2
CatchClause-10-1-0,2
CatchClause-19-0-0,2
CatchClause-24-0-0,2
CatchClause-4-0-0,2
CatchClause-12-0-0,2
CatchClause-2-0-0,2
CatchClause-5-1-0,2
CatchClause-14-0-0,2
TypeDeclaration-7-1-0,2
IfStatement-26-1-0,2
IfStatement-31-0-0,2
ExpressionStatement-6-2-8,2
MethodDeclaration-54-0-0,2
MethodDeclaration-56-0-0,2
MethodDeclaration-51-0-0,2
MethodDeclaration-33-0-0,2
MethodDeclaration-18-0-0,2
MethodDeclaration-27-1-0,2
MethodDeclaration-9-15-0,2
MethodDeclaration-11-1-1,2
MethodDeclaration-29-0-0,2
MethodDeclaration-42-0-0,2
MethodDeclaration-6-2-1,2
MethodDeclaration-19-2-0,2
MethodDeclaration-26-0-0,2
MethodDeclaration-21-0-0,2
MethodDeclaration-39-0-0,2
IfStatement-79-0-0,2
MethodDeclaration-90-0-0,2
MethodDeclaration-41-0-0,2
MethodDeclaration-24-0-0,2
MethodDeclaration-13-0-1,2
MethodDeclaration-14-0-1,2
MethodDeclaration-25-0-0,2
ExpressionStatement-35-0-0,2
ExpressionStatement-20-0-0,2
ExpressionStatement-18-0-0,2
ExpressionStatement-11-42-0,2
ExpressionStatement-16-4-0,2
ExpressionStatement-6-2-7,2
ExpressionStatement-6-2-6,2
MethodDeclaration-35-1-0,2
EnumDeclaration-2-0-0,2
EnumDeclaration-8-0-0,2
EnumDeclaration-11-0-0,2
IfStatement-24-0-0,2
IfStatement-23-1-0,2
IfStatement-5-3-3,2
IfStatement-5-3-2,2
IfStatement-22-1-0,2
IfStatement-25-0-0,2
ForStatement-16-0-0,2
ForStatement-80-0-0,2
ForStatement-19-0-0,2
ForStatement-8-0-0,2
ForStatement-24-0-0,2
ForStatement-4-0-0,2
ForStatement-13-0-0,2
WhileStatement-18-0-0,2
WhileStatement-7-0-0,2
WhileStatement-6-0-0,2
WhileStatement-17-0-0,2
WhileStatement-8-0-0,2
EnhancedForStatement-20-0-0,2
EnhancedForStatement-27-0-0,2
EnhancedForStatement-16-1-0,2
EnhancedForStatement-10-2-0,2
EnhancedForStatement-12-0-0,2
EnhancedForStatement-13-1-0,2
EnhancedForStatement-14-1-0,2
ConstructorInvocation-13-0-0,2
ConstructorInvocation-5-0-0,2
WhileStatement-2-0-0,2
1 cluster memberCount
2 ExpressionStatement-3-0-0 539
3 ExpressionStatement-4-3-0 200
4 VariableDeclarationStatement-3-0-0 191
5 FieldDeclaration-2-0-0 185
6 FieldDeclaration-6-0-0 182
7 FieldDeclaration-8-0-0 158
8 ExpressionStatement-2-0-0 148
9 ExpressionStatement-2-0-1 134
10 VariableDeclarationStatement-5-2-0 114
11 VariableDeclarationStatement-2-0-0 109
12 MethodDeclaration-2-0-0 106
13 VariableDeclarationStatement-7-0-0 105
14 FieldDeclaration-3-0-0 99
15 ExpressionStatement-5-6-0 96
16 VariableDeclarationStatement-4-0-0 90
17 IfStatement-6-0-0 81
18 ExpressionStatement-2-0-2 77
19 ExpressionStatement-7-1-0 72
20 SwitchCase-2-0-0 70
21 MethodDeclaration-2-0-1 66
22 ReturnStatement-2-0-0 62
23 TypeDeclaration-5-0-0 61
24 ReturnStatement-2-0-1 61
25 FieldDeclaration-2-0-1 60
26 FieldDeclaration-5-2-0 56
27 ReturnStatement-2-0-3 56
28 CatchClause-3-0-0 54
29 MethodDeclaration-14-0-0 53
30 ExpressionStatement-2-0-3 52
31 FieldDeclaration-11-0-0 48
32 ReturnStatement-3-3-0 46
33 IfStatement-5-3-0 46
34 VariableDeclarationStatement-7-0-2 45
35 ReturnStatement-2-0-2 45
36 TypeDeclaration-2-1-1 44
37 MethodDeclaration-6-2-0 44
38 ReturnStatement-4-2-0 42
39 VariableDeclarationStatement-7-0-3 42
40 ThrowStatement-4-0-0 41
41 MethodDeclaration-2-0-2 36
42 ExpressionStatement-5-6-1 35
43 VariableDeclarationStatement-4-0-1 35
44 VariableDeclarationStatement-11-0-0 30
45 TypeDeclaration-4-0-0 30
46 IfStatement-3-1-0 30
47 VariableDeclarationStatement-5-2-2 30
48 ThrowStatement-3-1-0 30
49 MethodDeclaration-4-1-0 29
50 VariableDeclarationStatement-7-0-6 28
51 FieldDeclaration-9-0-1 28
52 ReturnStatement-4-2-1 28
53 VariableDeclarationStatement-7-0-1 27
54 SwitchCase-4-0-0 27
55 TypeDeclaration-2-1-0 26
56 SwitchCase-2-0-1 26
57 MethodDeclaration-3-2-0 26
58 IfStatement-5-3-1 25
59 FieldDeclaration-7-4-0 24
60 FieldDeclaration-2-0-2 24
61 FieldDeclaration-10-0-0 23
62 ExpressionStatement-5-6-4 22
63 FieldDeclaration-6-0-1 22
64 ExpressionStatement-5-6-2 21
65 VariableDeclarationStatement-5-2-1 21
66 ReturnStatement-2-0-4 21
67 VariableDeclarationStatement-7-0-5 20
68 VariableDeclarationStatement-2-0-1 20
69 IfStatement-4-4-0 20
70 ExpressionStatement-2-0-5 19
71 FieldDeclaration-8-0-1 19
72 MethodDeclaration-11-1-0 18
73 ReturnStatement-2-0-6 18
74 ExpressionStatement-6-2-0 17
75 ExpressionStatement-5-6-3 16
76 VariableDeclarationStatement-5-2-4 16
77 MethodDeclaration-13-0-0 16
78 ExpressionStatement-2-0-8 15
79 SwitchCase-2-0-2 15
80 ExpressionStatement-6-2-2 15
81 FieldDeclaration-5-2-1 15
82 ExpressionStatement-3-0-1 15
83 ReturnStatement-2-0-5 14
84 TypeDeclaration-2-1-2 14
85 ExpressionStatement-2-0-10 14
86 VariableDeclarationStatement-11-0-1 14
87 ExpressionStatement-4-3-1 14
88 VariableDeclarationStatement-10-3-0 14
89 ExpressionStatement-6-2-3 14
90 VariableDeclarationStatement-5-2-3 14
91 ExpressionStatement-2-0-6 13
92 VariableDeclarationStatement-7-0-9 13
93 TryStatement-7-0-0 13
94 ExpressionStatement-2-0-4 13
95 EnhancedForStatement-2-0-1 12
96 IfStatement-8-5-0 12
97 VariableDeclarationStatement-7-0-4 12
98 IfStatement-7-5-1 11
99 VariableDeclarationStatement-8-11-1 11
100 TryStatement-46-0-0 11
101 ThrowStatement-2-0-0 11
102 ThrowStatement-5-2-1 11
103 SynchronizedStatement-4-0-0 11
104 SynchronizedStatement-2-0-0 11
105 TypeDeclaration-3-1-0 11
106 ExpressionStatement-9-2-0 11
107 TypeDeclaration-5-0-1 10
108 TryStatement-2-0-0 10
109 ReturnStatement-7-4-0 9
110 IfStatement-9-0-2 9
111 CatchClause-6-2-0 9
112 EnhancedForStatement-5-1-0 9
113 VariableDeclarationStatement-4-0-4 9
114 VariableDeclarationStatement-4-0-3 9
115 MethodDeclaration-17-0-0 9
116 ReturnStatement-2-0-7 9
117 MethodDeclaration-4-1-1 8
118 ThrowStatement-6-0-0 8
119 IfStatement-13-3-0 8
120 VariableDeclarationStatement-6-3-0 8
121 MethodDeclaration-7-2-0 8
122 ThrowStatement-2-0-1 8
123 TypeDeclaration-6-0-0 8
124 ExpressionStatement-6-2-1 8
125 EnhancedForStatement-3-0-0 8
126 ExpressionStatement-2-0-9 8
127 FieldDeclaration-12-0-0 8
128 VariableDeclarationStatement-4-0-6 7
129 ReturnStatement-6-2-0 7
130 CatchClause-4-0-1 7
131 ExpressionStatement-6-2-5 7
132 IfStatement-4-4-1 7
133 FieldDeclaration-13-0-0 7
134 ReturnStatement-4-2-2 7
135 SynchronizedStatement-5-0-0 6
136 TryStatement-21-0-0 6
137 IfStatement-9-0-1 6
138 VariableDeclarationStatement-19-1-0 6
139 IfStatement-6-0-1 6
140 TryStatement-5-0-0 6
141 MethodDeclaration-53-0-0 6
142 VariableDeclarationStatement-11-0-2 6
143 ThrowStatement-5-2-0 6
144 ExpressionStatement-6-2-4 6
145 VariableDeclarationStatement-14-2-0 6
146 SuperConstructorInvocation-2-0-0 6
147 EnhancedForStatement-6-1-0 6
148 CatchClause-11-0-0 6
149 SwitchCase-3-0-0 6
150 EnhancedForStatement-7-0-0 6
151 EnhancedForStatement-2-0-0 5
152 ThrowStatement-5-2-2 5
153 FieldDeclaration-9-0-2 5
154 IfStatement-12-7-0 5
155 TryStatement-10-2-0 5
156 IfStatement-2-4-0 5
157 FieldDeclaration-19-0-0 5
158 FieldDeclaration-11-0-1 5
159 VariableDeclarationStatement-7-0-8 5
160 ExpressionStatement-2-0-7 5
161 ExpressionStatement-2-0-13 5
162 ExpressionStatement-13-11-0 5
163 CatchClause-13-0-0 5
164 ExpressionStatement-4-3-2 5
165 VariableDeclarationStatement-4-0-7 5
166 ThrowStatement-2-0-2 5
167 MethodDeclaration-8-1-0 5
168 AssertStatement-2-0-0 5
169 MethodDeclaration-10-3-0 5
170 VariableDeclarationStatement-7-0-7 5
171 ExpressionStatement-8-25-0 5
172 VariableDeclarationStatement-3-0-1 5
173 CatchClause-4-0-2 5
174 CatchClause-16-1-0 4
175 CatchClause-8-0-0 4
176 ForStatement-22-1-0 4
177 ForStatement-27-0-0 4
178 MethodDeclaration-32-0-0 4
179 CatchClause-9-1-0 4
180 FieldDeclaration-7-4-1 4
181 IfStatement-14-4-0 4
182 ExpressionStatement-5-6-6 4
183 ExpressionStatement-5-6-5 4
184 MethodDeclaration-23-0-0 4
185 IfStatement-53-0-0 4
186 SwitchCase-5-0-0 4
187 WhileStatement-3-0-0 4
188 SynchronizedStatement-11-0-0 4
189 VariableDeclarationStatement-4-0-8 4
190 EnhancedForStatement-4-1-0 4
191 ReturnStatement-5-15-1 4
192 VariableDeclarationStatement-18-0-0 4
193 VariableDeclarationStatement-4-0-2 4
194 VariableDeclarationStatement-4-0-5 4
195 FieldDeclaration-15-0-0 4
196 IfStatement-7-5-2 4
197 TryStatement-4-2-0 4
198 TryStatement-28-0-0 4
199 FieldDeclaration-9-0-0 4
200 ExpressionStatement-28-0-0 4
201 IfStatement-10-30-0 4
202 TypeDeclaration-4-0-1 4
203 VariableDeclarationStatement-5-2-5 4
204 MethodDeclaration-15-1-0 4
205 IfStatement-37-0-0 4
206 MethodDeclaration-20-4-0 4
207 MethodDeclaration-5-8-0 4
208 FieldDeclaration-14-4-0 4
209 ExpressionStatement-23-0-0 3
210 EnumDeclaration-9-0-0 3
211 ExpressionStatement-2-0-11 3
212 MethodDeclaration-16-5-0 3
213 ExpressionStatement-12-6-0 3
214 ExpressionStatement-3-0-3 3
215 ExpressionStatement-3-0-4 3
216 MethodDeclaration-12-9-0 3
217 ExpressionStatement-8-25-1 3
218 MethodDeclaration-22-2-0 3
219 MethodDeclaration-46-0-0 3
220 IfStatement-9-0-3 3
221 ExpressionStatement-2-0-14 3
222 TypeDeclaration-8-0-0 3
223 ExpressionStatement-10-9-0 3
224 IfStatement-9-0-0 3
225 EnhancedForStatement-18-0-0 3
226 IfStatement-69-0-0 3
227 SwitchStatement-2-0-0 3
228 SynchronizedStatement-2-0-1 3
229 SynchronizedStatement-3-5-0 3
230 ThrowStatement-8-0-0 3
231 ReturnStatement-5-15-0 3
232 ReturnStatement-15-0-0 3
233 ReturnStatement-4-2-3 3
234 FieldDeclaration-6-0-2 3
235 TryStatement-3-0-0 3
236 FieldDeclaration-17-0-0 3
237 CatchClause-6-2-1 3
238 CatchClause-7-0-0 3
239 CatchClause-20-0-0 3
240 FieldDeclaration-4-3-0 3
241 VariableDeclarationStatement-5-2-7 3
242 VariableDeclarationStatement-13-2-0 3
243 VariableDeclarationStatement-12-1-0 3
244 VariableDeclarationStatement-15-2-0 3
245 FieldDeclaration-3-0-2 3
246 VariableDeclarationStatement-8-11-0 3
247 IfStatement-7-5-0 3
248 AssertStatement-3-0-0 3
249 IfStatement-3-1-1 3
250 IfStatement-19-1-0 3
251 WhileStatement-12-0-0 3
252 ForStatement-3-0-0 3
253 ExpressionStatement-14-2-0 3
254 TryStatement-16-0-0 3
255 IfStatement-15-1-0 3
256 TryStatement-8-0-0 3
257 IfStatement-46-0-0 3
258 TryStatement-38-0-0 3
259 ExpressionStatement-19-4-0 3
260 IfStatement-17-6-0 3
261 ThrowStatement-9-1-0 2
262 TryStatement-6-0-0 2
263 TryStatement-14-0-0 2
264 ExpressionStatement-24-0-0 2
265 ExpressionStatement-2-0-15 2
266 ExpressionStatement-21-0-0 2
267 TryStatement-11-4-0 2
268 ExpressionStatement-8-25-2 2
269 ExpressionStatement-2-0-12 2
270 FieldDeclaration-4-3-1 2
271 TryStatement-18-2-0 2
272 TryStatement-20-0-0 2
273 ExpressionStatement-26-1-0 2
274 TryStatement-24-0-0 2
275 TryStatement-13-1-0 2
276 FieldDeclaration-3-0-1 2
277 ExpressionStatement-5-6-7 2
278 TryStatement-12-1-0 2
279 TryStatement-6-0-1 2
280 FieldDeclaration-6-0-3 2
281 ExpressionStatement-4-3-3 2
282 ThrowStatement-10-0-0 2
283 ExpressionStatement-3-0-6 2
284 TryStatement-8-0-1 2
285 ExpressionStatement-2-0-16 2
286 ExpressionStatement-15-3-0 2
287 TryStatement-25-0-0 2
288 ThrowStatement-7-5-0 2
289 ExpressionStatement-3-0-2 2
290 ExpressionStatement-2-0-17 2
291 FieldDeclaration-16-0-0 2
292 ThrowStatement-12-0-0 2
293 ExpressionStatement-3-0-5 2
294 ThrowStatement-2-0-3 2
295 ExpressionStatement-2-0-18 2
296 TryStatement-6-0-2 2
297 FieldDeclaration-18-0-0 2
298 ExpressionStatement-2-0-19 2
299 TryStatement-15-0-0 2
300 VariableDeclarationStatement-20-0-0 2
301 ExpressionStatement-17-3-0 2
302 SynchronizedStatement-12-0-0 2
303 ReturnStatement-10-5-0 2
304 ReturnStatement-8-9-0 2
305 ReturnStatement-23-0-0 2
306 ReturnStatement-4-2-4 2
307 ReturnStatement-12-2-0 2
308 ReturnStatement-2-0-8 2
309 ReturnStatement-13-1-0 2
310 ReturnStatement-5-15-2 2
311 ReturnStatement-14-0-0 2
312 ReturnStatement-22-0-0 2
313 SynchronizedStatement-9-0-0 2
314 SynchronizedStatement-7-0-0 2
315 SynchronizedStatement-6-3-0 2
316 IfStatement-20-2-0 2
317 IfStatement-21-1-0 2
318 IfStatement-18-10-0 2
319 IfStatement-27-1-0 2
320 IfStatement-11-0-0 2
321 IfStatement-11-0-1 2
322 IfStatement-11-0-2 2
323 IfStatement-7-5-4 2
324 IfStatement-7-5-3 2
325 IfStatement-29-0-0 2
326 IfStatement-16-1-0 2
327 IfStatement-74-0-0 2
328 IfStatement-6-0-3 2
329 IfStatement-6-0-2 2
330 IfStatement-28-1-0 2
331 ReturnStatement-11-2-0 2
332 ReturnStatement-9-3-0 2
333 TypeDeclaration-5-0-2 2
334 TypeDeclaration-6-0-1 2
335 VariableDeclarationStatement-9-34-0 2
336 VariableDeclarationStatement-11-0-3 2
337 VariableDeclarationStatement-7-0-10 2
338 VariableDeclarationStatement-16-8-0 2
339 VariableDeclarationStatement-17-0-0 2
340 VariableDeclarationStatement-8-11-4 2
341 VariableDeclarationStatement-8-11-3 2
342 VariableDeclarationStatement-8-11-2 2
343 VariableDeclarationStatement-4-0-9 2
344 VariableDeclarationStatement-3-0-2 2
345 VariableDeclarationStatement-5-2-9 2
346 VariableDeclarationStatement-5-2-6 2
347 VariableDeclarationStatement-5-2-8 2
348 SuperConstructorInvocation-6-0-0 2
349 SuperConstructorInvocation-4-0-0 2
350 SuperConstructorInvocation-2-0-1 2
351 CatchClause-29-0-0 2
352 CatchClause-17-1-0 2
353 CatchClause-10-1-0 2
354 CatchClause-19-0-0 2
355 CatchClause-24-0-0 2
356 CatchClause-4-0-0 2
357 CatchClause-12-0-0 2
358 CatchClause-2-0-0 2
359 CatchClause-5-1-0 2
360 CatchClause-14-0-0 2
361 TypeDeclaration-7-1-0 2
362 IfStatement-26-1-0 2
363 IfStatement-31-0-0 2
364 ExpressionStatement-6-2-8 2
365 MethodDeclaration-54-0-0 2
366 MethodDeclaration-56-0-0 2
367 MethodDeclaration-51-0-0 2
368 MethodDeclaration-33-0-0 2
369 MethodDeclaration-18-0-0 2
370 MethodDeclaration-27-1-0 2
371 MethodDeclaration-9-15-0 2
372 MethodDeclaration-11-1-1 2
373 MethodDeclaration-29-0-0 2
374 MethodDeclaration-42-0-0 2
375 MethodDeclaration-6-2-1 2
376 MethodDeclaration-19-2-0 2
377 MethodDeclaration-26-0-0 2
378 MethodDeclaration-21-0-0 2
379 MethodDeclaration-39-0-0 2
380 IfStatement-79-0-0 2
381 MethodDeclaration-90-0-0 2
382 MethodDeclaration-41-0-0 2
383 MethodDeclaration-24-0-0 2
384 MethodDeclaration-13-0-1 2
385 MethodDeclaration-14-0-1 2
386 MethodDeclaration-25-0-0 2
387 ExpressionStatement-35-0-0 2
388 ExpressionStatement-20-0-0 2
389 ExpressionStatement-18-0-0 2
390 ExpressionStatement-11-42-0 2
391 ExpressionStatement-16-4-0 2
392 ExpressionStatement-6-2-7 2
393 ExpressionStatement-6-2-6 2
394 MethodDeclaration-35-1-0 2
395 EnumDeclaration-2-0-0 2
396 EnumDeclaration-8-0-0 2
397 EnumDeclaration-11-0-0 2
398 IfStatement-24-0-0 2
399 IfStatement-23-1-0 2
400 IfStatement-5-3-3 2
401 IfStatement-5-3-2 2
402 IfStatement-22-1-0 2
403 IfStatement-25-0-0 2
404 ForStatement-16-0-0 2
405 ForStatement-80-0-0 2
406 ForStatement-19-0-0 2
407 ForStatement-8-0-0 2
408 ForStatement-24-0-0 2
409 ForStatement-4-0-0 2
410 ForStatement-13-0-0 2
411 WhileStatement-18-0-0 2
412 WhileStatement-7-0-0 2
413 WhileStatement-6-0-0 2
414 WhileStatement-17-0-0 2
415 WhileStatement-8-0-0 2
416 EnhancedForStatement-20-0-0 2
417 EnhancedForStatement-27-0-0 2
418 EnhancedForStatement-16-1-0 2
419 EnhancedForStatement-10-2-0 2
420 EnhancedForStatement-12-0-0 2
421 EnhancedForStatement-13-1-0 2
422 EnhancedForStatement-14-1-0 2
423 ConstructorInvocation-13-0-0 2
424 ConstructorInvocation-5-0-0 2
425 WhileStatement-2-0-0 2
File diff suppressed because it is too large Load Diff
+307
View File
@@ -0,0 +1,307 @@
cluster,memberCount
VariableDeclarationStatement-2-0-0-0,108
FieldDeclaration-2-0-0-1,81
ExpressionStatement-2-0-2-0,66
IfStatement-6-0-0-0,65
FieldDeclaration-2-0-0-2,50
FieldDeclaration-2-0-0-0,33
ExpressionStatement-3-0-0-2,32
MethodDeclaration-2-0-1-3,24
MethodDeclaration-2-0-1-0,17
CatchClause-3-0-0-0,15
SwitchCase-2-0-1-0,13
ExpressionStatement-3-0-0-8,13
FieldDeclaration-2-0-0-3,12
ExpressionStatement-3-0-0-4,12
MethodDeclaration-2-0-1-1,12
TypeDeclaration-2-1-1-0,10
ExpressionStatement-3-0-0-0,9
ExpressionStatement-3-0-0-1,9
VariableDeclarationStatement-10-3-0-0,8
ExpressionStatement-4-3-0-0,8
TryStatement-46-0-0-0,8
ExpressionStatement-3-0-0-6,8
ReturnStatement-2-0-2-1,8
ThrowStatement-6-0-0-0,8
ExpressionStatement-3-0-0-9,8
ExpressionStatement-3-0-0-3,7
VariableDeclarationStatement-5-2-4-0,7
ExpressionStatement-3-0-0-13,7
ThrowStatement-3-1-0-0,6
ExpressionStatement-5-6-0-1,6
TryStatement-21-0-0-0,6
ExpressionStatement-2-0-2-1,6
IfStatement-6-0-0-1,6
FieldDeclaration-2-0-0-5,6
VariableDeclarationStatement-19-1-0-0,6
SwitchCase-3-0-0-0,6
ExpressionStatement-3-0-0-12,6
MethodDeclaration-2-0-1-2,6
SynchronizedStatement-4-0-0-0,6
CatchClause-11-0-0-0,6
ReturnStatement-6-2-0-0,5
MethodDeclaration-3-2-0-0,5
ExpressionStatement-3-0-0-28,5
ExpressionStatement-5-6-0-0,5
ExpressionStatement-3-0-0-11,5
VariableDeclarationStatement-11-0-1-0,5
ExpressionStatement-6-2-4-0,5
ExpressionStatement-3-0-0-15,5
ExpressionStatement-13-11-0-0,5
ExpressionStatement-5-6-0-2,4
ExpressionStatement-3-0-0-27,4
MethodDeclaration-23-0-0-0,4
ExpressionStatement-3-0-0-20,4
ExpressionStatement-3-0-0-7,4
ReturnStatement-2-0-2-0,4
ExpressionStatement-3-0-0-31,4
MethodDeclaration-2-0-1-4,4
ReturnStatement-7-4-0-0,4
CatchClause-3-0-0-2,4
CatchClause-3-0-0-4,4
FieldDeclaration-9-0-0-0,4
ThrowStatement-5-2-1-1,4
ThrowStatement-5-2-1-0,4
MethodDeclaration-5-8-0-0,4
CatchClause-8-0-0-0,4
VariableDeclarationStatement-3-0-0-2,4
CatchClause-16-1-0-0,4
ExpressionStatement-10-9-0-0,3
ReturnStatement-5-15-0-0,3
ExpressionStatement-19-4-0-0,3
ExpressionStatement-9-2-0-0,3
FieldDeclaration-6-0-0-0,3
SwitchCase-4-0-0-1,3
ExpressionStatement-3-0-0-25,3
SynchronizedStatement-4-0-0-2,3
SwitchStatement-2-0-0-0,3
VariableDeclarationStatement-14-2-0-0,3
VariableDeclarationStatement-15-2-0-0,3
FieldDeclaration-6-0-0-5,3
ExpressionStatement-3-0-0-17,3
ExpressionStatement-3-0-0-10,3
VariableDeclarationStatement-4-0-0-0,3
IfStatement-17-6-0-0,3
IfStatement-10-30-0-0,3
WhileStatement-12-0-0-0,3
ExpressionStatement-3-0-0-30,3
IfStatement-3-1-0-1,3
ExpressionStatement-3-0-0-26,3
VariableDeclarationStatement-10-3-0-2,3
FieldDeclaration-2-0-0-4,3
ExpressionStatement-3-0-0-14,3
ExpressionStatement-2-0-2-2,3
TryStatement-16-0-0-0,3
ExpressionStatement-3-0-0-18,3
VariableDeclarationStatement-10-3-0-1,3
MethodDeclaration-3-2-0-1,3
ReturnStatement-7-4-0-2,3
TryStatement-46-0-0-1,3
ThrowStatement-3-1-0-5,3
VariableDeclarationStatement-14-2-0-1,3
TryStatement-38-0-0-0,3
ExpressionStatement-3-0-0-43,3
MethodDeclaration-2-0-1-5,3
CatchClause-6-2-0-0,3
ReturnStatement-15-0-0-0,3
TypeDeclaration-2-1-1-1,3
ThrowStatement-3-1-0-3,3
ThrowStatement-3-1-0-4,3
CatchClause-3-0-0-8,3
ExpressionStatement-5-6-0-5,3
CatchClause-7-0-0-0,3
ExpressionStatement-5-6-0-4,3
ThrowStatement-2-0-1-0,3
ExpressionStatement-5-6-0-6,3
MethodDeclaration-3-2-0-3,3
ExpressionStatement-3-0-0-50,2
ExpressionStatement-3-0-0-19,2
ExpressionStatement-3-0-0-59,2
ExpressionStatement-3-0-0-21,2
ExpressionStatement-3-0-0-42,2
ExpressionStatement-3-0-0-57,2
ExpressionStatement-3-0-0-45,2
ExpressionStatement-3-0-0-32,2
ExpressionStatement-3-0-0-35,2
ExpressionStatement-3-0-0-56,2
ExpressionStatement-3-0-0-51,2
ExpressionStatement-3-0-0-58,2
ExpressionStatement-3-0-0-16,2
ExpressionStatement-3-0-0-29,2
ExpressionStatement-3-0-0-34,2
ExpressionStatement-3-0-0-33,2
ExpressionStatement-3-0-0-44,2
VariableDeclarationStatement-20-0-0-0,2
ExpressionStatement-3-0-0-38,2
TryStatement-5-0-0-0,2
ThrowStatement-7-5-0-0,2
ThrowStatement-4-0-0-0,2
ThrowStatement-3-1-0-6,2
ThrowStatement-3-1-0-1,2
ThrowStatement-3-1-0-2,2
ThrowStatement-12-0-0-0,2
FieldDeclaration-11-0-0-0,2
FieldDeclaration-6-0-0-9,2
FieldDeclaration-6-0-0-11,2
FieldDeclaration-6-0-0-7,2
FieldDeclaration-6-0-0-6,2
FieldDeclaration-6-0-0-1,2
FieldDeclaration-6-0-0-10,2
FieldDeclaration-6-0-0-8,2
FieldDeclaration-6-0-0-4,2
FieldDeclaration-6-0-0-3,2
FieldDeclaration-6-0-0-12,2
FieldDeclaration-6-0-0-2,2
FieldDeclaration-17-0-0-0,2
FieldDeclaration-3-0-0-0,2
FieldDeclaration-3-0-0-1,2
ThrowStatement-9-1-0-0,2
TryStatement-3-0-0-0,2
ExpressionStatement-3-0-0-36,2
TryStatement-15-0-0-0,2
ExpressionStatement-3-0-0-54,2
ExpressionStatement-3-0-0-53,2
ExpressionStatement-3-0-0-37,2
ExpressionStatement-3-0-0-39,2
ExpressionStatement-3-0-0-52,2
ExpressionStatement-3-0-0-55,2
ExpressionStatement-3-0-0-46,2
ExpressionStatement-3-0-0-41,2
ExpressionStatement-3-0-0-48,2
ExpressionStatement-3-0-0-24,2
ExpressionStatement-3-0-0-23,2
ExpressionStatement-3-0-0-49,2
ExpressionStatement-3-0-0-40,2
ExpressionStatement-3-0-0-47,2
ExpressionStatement-3-0-0-5,2
ExpressionStatement-3-0-0-22,2
ExpressionStatement-12-6-0-0,2
ExpressionStatement-4-3-0-5,2
ExpressionStatement-5-6-0-7,2
ExpressionStatement-5-6-0-3,2
TryStatement-4-2-0-0,2
ExpressionStatement-15-3-0-0,2
MethodDeclaration-4-1-0-2,2
ExpressionStatement-4-3-0-2,2
CatchClause-3-0-0-7,2
CatchClause-3-0-0-1,2
CatchClause-3-0-0-3,2
CatchClause-3-0-0-5,2
CatchClause-14-0-0-0,2
SwitchCase-4-0-0-0,2
TypeDeclaration-3-1-0-0,2
TypeDeclaration-2-1-1-3,2
TypeDeclaration-2-1-1-2,2
TypeDeclaration-5-0-0-0,2
ReturnStatement-9-3-0-0,2
ReturnStatement-11-2-0-0,2
ReturnStatement-7-4-0-1,2
ReturnStatement-6-2-0-1,2
ReturnStatement-23-0-0-0,2
ReturnStatement-4-2-2-0,2
ReturnStatement-4-2-2-1,2
ReturnStatement-3-3-0-20,2
ReturnStatement-3-3-0-18,2
ReturnStatement-3-3-0-9,2
ReturnStatement-3-3-0-0,2
ReturnStatement-3-3-0-11,2
ReturnStatement-3-3-0-7,2
ReturnStatement-3-3-0-16,2
ReturnStatement-3-3-0-6,2
ReturnStatement-3-3-0-17,2
ReturnStatement-3-3-0-1,2
ReturnStatement-3-3-0-10,2
CatchClause-3-0-0-6,2
CatchClause-3-0-0-9,2
ReturnStatement-3-3-0-8,2
CatchClause-4-0-1-0,2
VariableDeclarationStatement-18-0-0-1,2
VariableDeclarationStatement-7-0-3-0,2
VariableDeclarationStatement-7-0-3-1,2
VariableDeclarationStatement-7-0-3-3,2
VariableDeclarationStatement-7-0-3-2,2
VariableDeclarationStatement-6-3-0-0,2
VariableDeclarationStatement-8-11-4-0,2
VariableDeclarationStatement-4-0-0-1,2
VariableDeclarationStatement-4-0-0-3,2
VariableDeclarationStatement-4-0-0-2,2
VariableDeclarationStatement-3-0-0-9,2
VariableDeclarationStatement-3-0-0-0,2
VariableDeclarationStatement-3-0-0-11,2
VariableDeclarationStatement-3-0-0-7,2
VariableDeclarationStatement-3-0-0-6,2
VariableDeclarationStatement-3-0-0-1,2
VariableDeclarationStatement-3-0-0-10,2
VariableDeclarationStatement-3-0-0-8,2
VariableDeclarationStatement-3-0-0-4,2
VariableDeclarationStatement-3-0-0-3,2
VariableDeclarationStatement-3-0-0-12,2
VariableDeclarationStatement-3-0-0-13,2
VariableDeclarationStatement-3-0-0-5,2
VariableDeclarationStatement-12-1-0-0,2
SuperConstructorInvocation-6-0-0-0,2
SuperConstructorInvocation-4-0-0-0,2
CatchClause-9-1-0-0,2
ReturnStatement-3-3-0-19,2
ReturnStatement-3-3-0-21,2
ExpressionStatement-4-3-0-3,2
ForStatement-19-0-0-0,2
WhileStatement-8-0-0-0,2
EnhancedForStatement-16-1-0-0,2
EnhancedForStatement-4-1-0-0,2
EnhancedForStatement-3-0-0-0,2
EnhancedForStatement-2-0-1-0,2
EnhancedForStatement-2-0-1-1,2
EnhancedForStatement-14-1-0-0,2
ConstructorInvocation-13-0-0-0,2
ConstructorInvocation-5-0-0-0,2
MethodDeclaration-35-1-0-0,2
MethodDeclaration-42-0-0-0,2
MethodDeclaration-6-2-0-0,2
MethodDeclaration-54-0-0-0,2
MethodDeclaration-4-1-0-0,2
MethodDeclaration-4-1-0-1,2
VariableDeclarationStatement-18-0-0-0,2
MethodDeclaration-3-2-0-2,2
MethodDeclaration-12-9-0-0,2
MethodDeclaration-14-0-0-0,2
ExpressionStatement-9-2-0-1,2
ExpressionStatement-11-42-0-0,2
ExpressionStatement-16-4-0-0,2
ExpressionStatement-26-1-0-0,2
ExpressionStatement-8-25-2-0,2
ExpressionStatement-4-3-0-6,2
ExpressionStatement-4-3-0-1,2
ExpressionStatement-4-3-0-4,2
WhileStatement-17-0-0-0,2
IfStatement-22-1-0-0,2
ReturnStatement-3-3-0-4,2
IfStatement-5-3-0-2,2
ReturnStatement-3-3-0-15,2
ReturnStatement-3-3-0-3,2
ReturnStatement-3-3-0-12,2
ReturnStatement-3-3-0-2,2
ReturnStatement-3-3-0-13,2
ReturnStatement-3-3-0-5,2
ReturnStatement-3-3-0-14,2
ReturnStatement-3-3-0-22,2
ReturnStatement-2-0-2-2,2
ReturnStatement-13-1-0-0,2
SynchronizedStatement-7-0-0-0,2
SynchronizedStatement-4-0-0-1,2
SynchronizedStatement-12-0-0-0,2
SynchronizedStatement-2-0-0-0,2
IfStatement-18-10-0-0,2
IfStatement-9-0-1-0,2
IfStatement-11-0-2-0,2
IfStatement-29-0-0-0,2
IfStatement-74-0-0-0,2
IfStatement-19-1-0-0,2
IfStatement-4-4-1-0,2
IfStatement-3-1-0-0,2
IfStatement-3-1-0-2,2
IfStatement-13-3-0-0,2
IfStatement-5-3-0-0,2
IfStatement-5-3-0-1,2
IfStatement-5-3-0-3,2
FieldDeclaration-5-2-1-0,2
1 cluster memberCount
2 VariableDeclarationStatement-2-0-0-0 108
3 FieldDeclaration-2-0-0-1 81
4 ExpressionStatement-2-0-2-0 66
5 IfStatement-6-0-0-0 65
6 FieldDeclaration-2-0-0-2 50
7 FieldDeclaration-2-0-0-0 33
8 ExpressionStatement-3-0-0-2 32
9 MethodDeclaration-2-0-1-3 24
10 MethodDeclaration-2-0-1-0 17
11 CatchClause-3-0-0-0 15
12 SwitchCase-2-0-1-0 13
13 ExpressionStatement-3-0-0-8 13
14 FieldDeclaration-2-0-0-3 12
15 ExpressionStatement-3-0-0-4 12
16 MethodDeclaration-2-0-1-1 12
17 TypeDeclaration-2-1-1-0 10
18 ExpressionStatement-3-0-0-0 9
19 ExpressionStatement-3-0-0-1 9
20 VariableDeclarationStatement-10-3-0-0 8
21 ExpressionStatement-4-3-0-0 8
22 TryStatement-46-0-0-0 8
23 ExpressionStatement-3-0-0-6 8
24 ReturnStatement-2-0-2-1 8
25 ThrowStatement-6-0-0-0 8
26 ExpressionStatement-3-0-0-9 8
27 ExpressionStatement-3-0-0-3 7
28 VariableDeclarationStatement-5-2-4-0 7
29 ExpressionStatement-3-0-0-13 7
30 ThrowStatement-3-1-0-0 6
31 ExpressionStatement-5-6-0-1 6
32 TryStatement-21-0-0-0 6
33 ExpressionStatement-2-0-2-1 6
34 IfStatement-6-0-0-1 6
35 FieldDeclaration-2-0-0-5 6
36 VariableDeclarationStatement-19-1-0-0 6
37 SwitchCase-3-0-0-0 6
38 ExpressionStatement-3-0-0-12 6
39 MethodDeclaration-2-0-1-2 6
40 SynchronizedStatement-4-0-0-0 6
41 CatchClause-11-0-0-0 6
42 ReturnStatement-6-2-0-0 5
43 MethodDeclaration-3-2-0-0 5
44 ExpressionStatement-3-0-0-28 5
45 ExpressionStatement-5-6-0-0 5
46 ExpressionStatement-3-0-0-11 5
47 VariableDeclarationStatement-11-0-1-0 5
48 ExpressionStatement-6-2-4-0 5
49 ExpressionStatement-3-0-0-15 5
50 ExpressionStatement-13-11-0-0 5
51 ExpressionStatement-5-6-0-2 4
52 ExpressionStatement-3-0-0-27 4
53 MethodDeclaration-23-0-0-0 4
54 ExpressionStatement-3-0-0-20 4
55 ExpressionStatement-3-0-0-7 4
56 ReturnStatement-2-0-2-0 4
57 ExpressionStatement-3-0-0-31 4
58 MethodDeclaration-2-0-1-4 4
59 ReturnStatement-7-4-0-0 4
60 CatchClause-3-0-0-2 4
61 CatchClause-3-0-0-4 4
62 FieldDeclaration-9-0-0-0 4
63 ThrowStatement-5-2-1-1 4
64 ThrowStatement-5-2-1-0 4
65 MethodDeclaration-5-8-0-0 4
66 CatchClause-8-0-0-0 4
67 VariableDeclarationStatement-3-0-0-2 4
68 CatchClause-16-1-0-0 4
69 ExpressionStatement-10-9-0-0 3
70 ReturnStatement-5-15-0-0 3
71 ExpressionStatement-19-4-0-0 3
72 ExpressionStatement-9-2-0-0 3
73 FieldDeclaration-6-0-0-0 3
74 SwitchCase-4-0-0-1 3
75 ExpressionStatement-3-0-0-25 3
76 SynchronizedStatement-4-0-0-2 3
77 SwitchStatement-2-0-0-0 3
78 VariableDeclarationStatement-14-2-0-0 3
79 VariableDeclarationStatement-15-2-0-0 3
80 FieldDeclaration-6-0-0-5 3
81 ExpressionStatement-3-0-0-17 3
82 ExpressionStatement-3-0-0-10 3
83 VariableDeclarationStatement-4-0-0-0 3
84 IfStatement-17-6-0-0 3
85 IfStatement-10-30-0-0 3
86 WhileStatement-12-0-0-0 3
87 ExpressionStatement-3-0-0-30 3
88 IfStatement-3-1-0-1 3
89 ExpressionStatement-3-0-0-26 3
90 VariableDeclarationStatement-10-3-0-2 3
91 FieldDeclaration-2-0-0-4 3
92 ExpressionStatement-3-0-0-14 3
93 ExpressionStatement-2-0-2-2 3
94 TryStatement-16-0-0-0 3
95 ExpressionStatement-3-0-0-18 3
96 VariableDeclarationStatement-10-3-0-1 3
97 MethodDeclaration-3-2-0-1 3
98 ReturnStatement-7-4-0-2 3
99 TryStatement-46-0-0-1 3
100 ThrowStatement-3-1-0-5 3
101 VariableDeclarationStatement-14-2-0-1 3
102 TryStatement-38-0-0-0 3
103 ExpressionStatement-3-0-0-43 3
104 MethodDeclaration-2-0-1-5 3
105 CatchClause-6-2-0-0 3
106 ReturnStatement-15-0-0-0 3
107 TypeDeclaration-2-1-1-1 3
108 ThrowStatement-3-1-0-3 3
109 ThrowStatement-3-1-0-4 3
110 CatchClause-3-0-0-8 3
111 ExpressionStatement-5-6-0-5 3
112 CatchClause-7-0-0-0 3
113 ExpressionStatement-5-6-0-4 3
114 ThrowStatement-2-0-1-0 3
115 ExpressionStatement-5-6-0-6 3
116 MethodDeclaration-3-2-0-3 3
117 ExpressionStatement-3-0-0-50 2
118 ExpressionStatement-3-0-0-19 2
119 ExpressionStatement-3-0-0-59 2
120 ExpressionStatement-3-0-0-21 2
121 ExpressionStatement-3-0-0-42 2
122 ExpressionStatement-3-0-0-57 2
123 ExpressionStatement-3-0-0-45 2
124 ExpressionStatement-3-0-0-32 2
125 ExpressionStatement-3-0-0-35 2
126 ExpressionStatement-3-0-0-56 2
127 ExpressionStatement-3-0-0-51 2
128 ExpressionStatement-3-0-0-58 2
129 ExpressionStatement-3-0-0-16 2
130 ExpressionStatement-3-0-0-29 2
131 ExpressionStatement-3-0-0-34 2
132 ExpressionStatement-3-0-0-33 2
133 ExpressionStatement-3-0-0-44 2
134 VariableDeclarationStatement-20-0-0-0 2
135 ExpressionStatement-3-0-0-38 2
136 TryStatement-5-0-0-0 2
137 ThrowStatement-7-5-0-0 2
138 ThrowStatement-4-0-0-0 2
139 ThrowStatement-3-1-0-6 2
140 ThrowStatement-3-1-0-1 2
141 ThrowStatement-3-1-0-2 2
142 ThrowStatement-12-0-0-0 2
143 FieldDeclaration-11-0-0-0 2
144 FieldDeclaration-6-0-0-9 2
145 FieldDeclaration-6-0-0-11 2
146 FieldDeclaration-6-0-0-7 2
147 FieldDeclaration-6-0-0-6 2
148 FieldDeclaration-6-0-0-1 2
149 FieldDeclaration-6-0-0-10 2
150 FieldDeclaration-6-0-0-8 2
151 FieldDeclaration-6-0-0-4 2
152 FieldDeclaration-6-0-0-3 2
153 FieldDeclaration-6-0-0-12 2
154 FieldDeclaration-6-0-0-2 2
155 FieldDeclaration-17-0-0-0 2
156 FieldDeclaration-3-0-0-0 2
157 FieldDeclaration-3-0-0-1 2
158 ThrowStatement-9-1-0-0 2
159 TryStatement-3-0-0-0 2
160 ExpressionStatement-3-0-0-36 2
161 TryStatement-15-0-0-0 2
162 ExpressionStatement-3-0-0-54 2
163 ExpressionStatement-3-0-0-53 2
164 ExpressionStatement-3-0-0-37 2
165 ExpressionStatement-3-0-0-39 2
166 ExpressionStatement-3-0-0-52 2
167 ExpressionStatement-3-0-0-55 2
168 ExpressionStatement-3-0-0-46 2
169 ExpressionStatement-3-0-0-41 2
170 ExpressionStatement-3-0-0-48 2
171 ExpressionStatement-3-0-0-24 2
172 ExpressionStatement-3-0-0-23 2
173 ExpressionStatement-3-0-0-49 2
174 ExpressionStatement-3-0-0-40 2
175 ExpressionStatement-3-0-0-47 2
176 ExpressionStatement-3-0-0-5 2
177 ExpressionStatement-3-0-0-22 2
178 ExpressionStatement-12-6-0-0 2
179 ExpressionStatement-4-3-0-5 2
180 ExpressionStatement-5-6-0-7 2
181 ExpressionStatement-5-6-0-3 2
182 TryStatement-4-2-0-0 2
183 ExpressionStatement-15-3-0-0 2
184 MethodDeclaration-4-1-0-2 2
185 ExpressionStatement-4-3-0-2 2
186 CatchClause-3-0-0-7 2
187 CatchClause-3-0-0-1 2
188 CatchClause-3-0-0-3 2
189 CatchClause-3-0-0-5 2
190 CatchClause-14-0-0-0 2
191 SwitchCase-4-0-0-0 2
192 TypeDeclaration-3-1-0-0 2
193 TypeDeclaration-2-1-1-3 2
194 TypeDeclaration-2-1-1-2 2
195 TypeDeclaration-5-0-0-0 2
196 ReturnStatement-9-3-0-0 2
197 ReturnStatement-11-2-0-0 2
198 ReturnStatement-7-4-0-1 2
199 ReturnStatement-6-2-0-1 2
200 ReturnStatement-23-0-0-0 2
201 ReturnStatement-4-2-2-0 2
202 ReturnStatement-4-2-2-1 2
203 ReturnStatement-3-3-0-20 2
204 ReturnStatement-3-3-0-18 2
205 ReturnStatement-3-3-0-9 2
206 ReturnStatement-3-3-0-0 2
207 ReturnStatement-3-3-0-11 2
208 ReturnStatement-3-3-0-7 2
209 ReturnStatement-3-3-0-16 2
210 ReturnStatement-3-3-0-6 2
211 ReturnStatement-3-3-0-17 2
212 ReturnStatement-3-3-0-1 2
213 ReturnStatement-3-3-0-10 2
214 CatchClause-3-0-0-6 2
215 CatchClause-3-0-0-9 2
216 ReturnStatement-3-3-0-8 2
217 CatchClause-4-0-1-0 2
218 VariableDeclarationStatement-18-0-0-1 2
219 VariableDeclarationStatement-7-0-3-0 2
220 VariableDeclarationStatement-7-0-3-1 2
221 VariableDeclarationStatement-7-0-3-3 2
222 VariableDeclarationStatement-7-0-3-2 2
223 VariableDeclarationStatement-6-3-0-0 2
224 VariableDeclarationStatement-8-11-4-0 2
225 VariableDeclarationStatement-4-0-0-1 2
226 VariableDeclarationStatement-4-0-0-3 2
227 VariableDeclarationStatement-4-0-0-2 2
228 VariableDeclarationStatement-3-0-0-9 2
229 VariableDeclarationStatement-3-0-0-0 2
230 VariableDeclarationStatement-3-0-0-11 2
231 VariableDeclarationStatement-3-0-0-7 2
232 VariableDeclarationStatement-3-0-0-6 2
233 VariableDeclarationStatement-3-0-0-1 2
234 VariableDeclarationStatement-3-0-0-10 2
235 VariableDeclarationStatement-3-0-0-8 2
236 VariableDeclarationStatement-3-0-0-4 2
237 VariableDeclarationStatement-3-0-0-3 2
238 VariableDeclarationStatement-3-0-0-12 2
239 VariableDeclarationStatement-3-0-0-13 2
240 VariableDeclarationStatement-3-0-0-5 2
241 VariableDeclarationStatement-12-1-0-0 2
242 SuperConstructorInvocation-6-0-0-0 2
243 SuperConstructorInvocation-4-0-0-0 2
244 CatchClause-9-1-0-0 2
245 ReturnStatement-3-3-0-19 2
246 ReturnStatement-3-3-0-21 2
247 ExpressionStatement-4-3-0-3 2
248 ForStatement-19-0-0-0 2
249 WhileStatement-8-0-0-0 2
250 EnhancedForStatement-16-1-0-0 2
251 EnhancedForStatement-4-1-0-0 2
252 EnhancedForStatement-3-0-0-0 2
253 EnhancedForStatement-2-0-1-0 2
254 EnhancedForStatement-2-0-1-1 2
255 EnhancedForStatement-14-1-0-0 2
256 ConstructorInvocation-13-0-0-0 2
257 ConstructorInvocation-5-0-0-0 2
258 MethodDeclaration-35-1-0-0 2
259 MethodDeclaration-42-0-0-0 2
260 MethodDeclaration-6-2-0-0 2
261 MethodDeclaration-54-0-0-0 2
262 MethodDeclaration-4-1-0-0 2
263 MethodDeclaration-4-1-0-1 2
264 VariableDeclarationStatement-18-0-0-0 2
265 MethodDeclaration-3-2-0-2 2
266 MethodDeclaration-12-9-0-0 2
267 MethodDeclaration-14-0-0-0 2
268 ExpressionStatement-9-2-0-1 2
269 ExpressionStatement-11-42-0-0 2
270 ExpressionStatement-16-4-0-0 2
271 ExpressionStatement-26-1-0-0 2
272 ExpressionStatement-8-25-2-0 2
273 ExpressionStatement-4-3-0-6 2
274 ExpressionStatement-4-3-0-1 2
275 ExpressionStatement-4-3-0-4 2
276 WhileStatement-17-0-0-0 2
277 IfStatement-22-1-0-0 2
278 ReturnStatement-3-3-0-4 2
279 IfStatement-5-3-0-2 2
280 ReturnStatement-3-3-0-15 2
281 ReturnStatement-3-3-0-3 2
282 ReturnStatement-3-3-0-12 2
283 ReturnStatement-3-3-0-2 2
284 ReturnStatement-3-3-0-13 2
285 ReturnStatement-3-3-0-5 2
286 ReturnStatement-3-3-0-14 2
287 ReturnStatement-3-3-0-22 2
288 ReturnStatement-2-0-2-2 2
289 ReturnStatement-13-1-0-0 2
290 SynchronizedStatement-7-0-0-0 2
291 SynchronizedStatement-4-0-0-1 2
292 SynchronizedStatement-12-0-0-0 2
293 SynchronizedStatement-2-0-0-0 2
294 IfStatement-18-10-0-0 2
295 IfStatement-9-0-1-0 2
296 IfStatement-11-0-2-0 2
297 IfStatement-29-0-0-0 2
298 IfStatement-74-0-0-0 2
299 IfStatement-19-1-0-0 2
300 IfStatement-4-4-1-0 2
301 IfStatement-3-1-0-0 2
302 IfStatement-3-1-0-2 2
303 IfStatement-13-3-0-0 2
304 IfStatement-5-3-0-0 2
305 IfStatement-5-3-0-1 2
306 IfStatement-5-3-0-3 2
307 FieldDeclaration-5-2-1-0 2
+47
View File
@@ -0,0 +1,47 @@
Group,Subject,Repo,GitRepo,Branch
Apache,CAMEL,camel,https://github.com/apache/camel.git,master
Apache,HBASE,hbase,https://github.com/apache/hbase.git,master
Apache,HIVE,hive,https://github.com/apache/hive.git,master
Commons,CODEC,commons-codec,https://github.com/apache/commons-codec.git,trunk
Commons,COLLECTIONS,commons-collections,https://github.com/apache/commons-collections.git,master
Commons,COMPRESS,commons-compress,https://github.com/apache/commons-compress.git,master
Commons,CONFIGURATION,commons-configuration,https://github.com/apache/commons-configuration.git,trunk
Commons,CRYPTO,commons-crypto,https://github.com/apache/commons-crypto.git,master
Commons,CSV,commons-csv,https://github.com/apache/commons-csv.git,master
Commons,IO,commons-io,https://github.com/apache/commons-io.git,master
Commons,WEAVER,commons-weaver,https://github.com/apache/commons-weaver.git,master
JBoss,ENTESB,fuse,https://github.com/jboss-fuse/fuse.git,6.3.0.redhat
JBoss,JBMETA,metadata,https://github.com/jboss/metadata.git,master
Wildfly,ELY,wildfly-elytron,https://github.com/wildfly-security/wildfly-elytron.git,master
Wildfly,SWARM,wildfly-swarm,https://github.com/wildfly-swarm/wildfly-swarm.git,master
Wildfly,WFARQ,wildfly-arquillian,https://github.com/wildfly/wildfly-arquillian.git,master
Wildfly,WFCORE,wildfly-core,https://github.com/wildfly/wildfly-core.git,master
Wildfly,WFLY,wildfly,https://github.com/wildfly/wildfly.git,master
Wildfly,WFMP,wildfly-maven-plugin,https://github.com/wildfly/wildfly-maven-plugin.git,master
Spring,AMQP,spring-amqp,https://github.com/spring-projects/spring-amqp,master
Spring,ANDROID,spring-android,https://github.com/spring-projects/spring-android,master
Spring,BATCH,spring-batch,https://github.com/spring-projects/spring-batch,master
Spring,BATCHADM,spring-batch-admin,https://github.com/spring-projects/spring-batch-admin,master
Spring,DATACMNS,spring-data-commons,https://github.com/spring-projects/spring-data-commons,master
Spring,DATAGRAPH,spring-data-neo4j,https://github.com/spring-projects/spring-data-neo4j,master
Spring,DATAJPA,spring-data-jpa,https://github.com/spring-projects/spring-data-jpa,master
Spring,DATAMONGO,spring-data-mongodb,https://github.com/spring-projects/spring-data-mongodb,master
Spring,DATAREDIS,spring-data-redis,https://github.com/spring-projects/spring-data-redis,master
Spring,DATAREST,spring-data-rest,https://github.com/spring-projects/spring-data-rest,master
Spring,LDAP,spring-ldap,https://github.com/spring-projects/spring-ldap,master
Spring,MOBILE,spring-mobile,https://github.com/spring-projects/spring-mobile,master
Spring,ROO,spring-roo,https://github.com/spring-projects/spring-roo,master
Spring,SEC,spring-security,https://github.com/spring-projects/spring-security,master
Spring,SECOAUTH,spring-security-oauth,https://github.com/spring-projects/spring-security-oauth,master
Spring,SGF,spring-data-gemfire,https://github.com/spring-projects/spring-data-gemfire,master
Spring,SHDP,spring-hadoop,https://github.com/spring-projects/spring-hadoop,master
Spring,SHL,spring-shell,https://github.com/spring-projects/spring-shell,master
Spring,SOCIAL,spring-social,https://github.com/spring-projects/spring-social,master
Spring,SOCIALFB,spring-social-facebook,https://github.com/spring-projects/spring-social-facebook,master
Spring,SOCIALLI,spring-social-linkedin,https://github.com/spring-projects/spring-social-linkedin,master
Spring,SOCIALTW,spring-social-twitter,https://github.com/spring-projects/spring-social-twitter,master
Spring,SPR,spring-framework,https://github.com/spring-projects/spring-framework,master
Spring,SWF,spring-webflow,https://github.com/spring-projects/spring-webflow,master
Spring,SWS,spring-ws,https://github.com/spring-projects/spring-ws,master
1 Group Subject Repo GitRepo Branch
2 Apache CAMEL camel https://github.com/apache/camel.git master
3 Apache HBASE hbase https://github.com/apache/hbase.git master
4 Apache HIVE hive https://github.com/apache/hive.git master
5 Commons CODEC commons-codec https://github.com/apache/commons-codec.git trunk
6 Commons COLLECTIONS commons-collections https://github.com/apache/commons-collections.git master
7 Commons COMPRESS commons-compress https://github.com/apache/commons-compress.git master
8 Commons CONFIGURATION commons-configuration https://github.com/apache/commons-configuration.git trunk
9 Commons CRYPTO commons-crypto https://github.com/apache/commons-crypto.git master
10 Commons CSV commons-csv https://github.com/apache/commons-csv.git master
11 Commons IO commons-io https://github.com/apache/commons-io.git master
12 Commons WEAVER commons-weaver https://github.com/apache/commons-weaver.git master
13 JBoss ENTESB fuse https://github.com/jboss-fuse/fuse.git 6.3.0.redhat
14 JBoss JBMETA metadata https://github.com/jboss/metadata.git master
15 Wildfly ELY wildfly-elytron https://github.com/wildfly-security/wildfly-elytron.git master
16 Wildfly SWARM wildfly-swarm https://github.com/wildfly-swarm/wildfly-swarm.git master
17 Wildfly WFARQ wildfly-arquillian https://github.com/wildfly/wildfly-arquillian.git master
18 Wildfly WFCORE wildfly-core https://github.com/wildfly/wildfly-core.git master
19 Wildfly WFLY wildfly https://github.com/wildfly/wildfly.git master
20 Wildfly WFMP wildfly-maven-plugin https://github.com/wildfly/wildfly-maven-plugin.git master
21 Spring AMQP spring-amqp https://github.com/spring-projects/spring-amqp master
22 Spring ANDROID spring-android https://github.com/spring-projects/spring-android master
23 Spring BATCH spring-batch https://github.com/spring-projects/spring-batch master
24 Spring BATCHADM spring-batch-admin https://github.com/spring-projects/spring-batch-admin master
25 Spring DATACMNS spring-data-commons https://github.com/spring-projects/spring-data-commons master
26 Spring DATAGRAPH spring-data-neo4j https://github.com/spring-projects/spring-data-neo4j master
27 Spring DATAJPA spring-data-jpa https://github.com/spring-projects/spring-data-jpa master
28 Spring DATAMONGO spring-data-mongodb https://github.com/spring-projects/spring-data-mongodb master
29 Spring DATAREDIS spring-data-redis https://github.com/spring-projects/spring-data-redis master
30 Spring DATAREST spring-data-rest https://github.com/spring-projects/spring-data-rest master
31 Spring LDAP spring-ldap https://github.com/spring-projects/spring-ldap master
32 Spring MOBILE spring-mobile https://github.com/spring-projects/spring-mobile master
33 Spring ROO spring-roo https://github.com/spring-projects/spring-roo master
34 Spring SEC spring-security https://github.com/spring-projects/spring-security master
35 Spring SECOAUTH spring-security-oauth https://github.com/spring-projects/spring-security-oauth master
36 Spring SGF spring-data-gemfire https://github.com/spring-projects/spring-data-gemfire master
37 Spring SHDP spring-hadoop https://github.com/spring-projects/spring-hadoop master
38 Spring SHL spring-shell https://github.com/spring-projects/spring-shell master
39 Spring SOCIAL spring-social https://github.com/spring-projects/spring-social master
40 Spring SOCIALFB spring-social-facebook https://github.com/spring-projects/spring-social-facebook master
41 Spring SOCIALLI spring-social-linkedin https://github.com/spring-projects/spring-social-linkedin master
42 Spring SOCIALTW spring-social-twitter https://github.com/spring-projects/spring-social-twitter master
43 Spring SPR spring-framework https://github.com/spring-projects/spring-framework master
44 Spring SWF spring-webflow https://github.com/spring-projects/spring-webflow master
45 Spring SWS spring-ws https://github.com/spring-projects/spring-ws master