GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 9-9 lines in 2 locations

third-party/angularjs-modules-plugins/ng-file-upload-12.2.12/demo/src/main/webapp/js/ng-img-crop.js 2 locations

@@ 1202-1210 (lines=9) @@
1199
              }
1200
1201
          case 10: // signed rational, two slongs, first is numerator, second is denominator
1202
              if (numValues == 1) {
1203
                  return file.getInt32(valueOffset, !bigEnd) / file.getInt32(valueOffset+4, !bigEnd);
1204
              } else {
1205
                  vals = [];
1206
                  for (n=0;n<numValues;n++) {
1207
                      vals[n] = file.getInt32(valueOffset + 8*n, !bigEnd) / file.getInt32(valueOffset+4 + 8*n, !bigEnd);
1208
                  }
1209
                  return vals;
1210
              }
1211
      }
1212
  }
1213
@@ 1191-1199 (lines=9) @@
1188
              }
1189
1190
          case 9: // slong, 32 bit signed int
1191
              if (numValues == 1) {
1192
                  return file.getInt32(entryOffset + 8, !bigEnd);
1193
              } else {
1194
                  vals = [];
1195
                  for (n=0;n<numValues;n++) {
1196
                      vals[n] = file.getInt32(valueOffset + 4*n, !bigEnd);
1197
                  }
1198
                  return vals;
1199
              }
1200
1201
          case 10: // signed rational, two slongs, first is numerator, second is denominator
1202
              if (numValues == 1) {