Permettre d'ignoré le paramètre mini_number_modification avec comme
valeur par défaut -1. Dans la vérification de l'historique les premières dates de modification nulle ne sont pas comparées.
This commit is contained in:
parent
f2f006eafd
commit
e41071db9f
1
.~lock.documentation analyseWriter.odt#
Normal file
1
.~lock.documentation analyseWriter.odt#
Normal file
@ -0,0 +1 @@
|
||||
pablo rodriguez,LAPTOP-G5TBC6N3/pabr6,LAPTOP-G5TBC6N3,13.04.2022 18:59,file:///C:/Users/pabr6/AppData/Roaming/LibreOffice/4;
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -4197,7 +4197,7 @@ public class meptl {
|
||||
for(int j = 0; j < lastIndex; j++) {
|
||||
if(i!=j) {
|
||||
String D2 = verif.getNodes().get(j).getAttributs().get("first_modification_date");
|
||||
if(D1.equals(D2)) {
|
||||
if(!D1.equals("null") && D1.equals(D2)) {
|
||||
if(verif.getNodes().get(i).getAttributs().get("")==null) {
|
||||
verif.getNodes().get(i).getAttributs().put("first_modification_identique", verif.getNodes().get(j).getAttributs().get("dossier"));
|
||||
}else {
|
||||
@ -4886,7 +4886,7 @@ public class meptl {
|
||||
node plagiarism = new node();
|
||||
plagiarism.setNomElt("plagiarism");
|
||||
plagiarism.getAttributs().put("number_match", "2");
|
||||
plagiarism.getAttributs().put("mini_number_modification", "0");
|
||||
plagiarism.getAttributs().put("mini_number_modification", "-1");
|
||||
plagiarism.getAttributs().put("nombres_modifications_simultané_maxi", "100");
|
||||
plagiarism.setClose(true);
|
||||
|
||||
|
@ -340,7 +340,7 @@ public class verificationFichierAnalyse {
|
||||
System.out.println();
|
||||
erreur=true;
|
||||
}
|
||||
if(mini_number_modification<0) {
|
||||
if(mini_number_modification<-1) {
|
||||
System.out.println();
|
||||
System.out.println("**-** ERROR in analysis file at node \"setting\".");
|
||||
System.out.println("The minimum number of modifications must be a positive numeric value.");
|
||||
|
Loading…
Reference in New Issue
Block a user