Skip to content

Commit 283de1e

Browse files
committed
N°8768 - Fix code style & duplicated dico entries
1 parent 8b00016 commit 283de1e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

dictionaries/it.dictionary.itop.core.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,6 @@
503503
'Class:ActionNotification/Attribute:language+' => 'Lingua da utilizzare per i segnaposto ($xxx$) all\'interno del messaggio (stato, importanza, priorità, ecc.)',
504504
]);
505505

506-
507506
//
508507
// Class: lnkActionNotificationToContact
509508
//

dictionaries/nl.dictionary.itop.core.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,8 +501,8 @@
501501
Dict::Add('NL NL', 'Dutch', 'Nederlands', [
502502
'Class:ActionNotification' => 'Melding',
503503
'Class:ActionNotification+' => 'Melding (abstract)',
504-
'Class:ActionEmail/Attribute:language' => 'Language~~',
505-
'Class:ActionEmail/Attribute:language+' => 'Language to use for placeholders ($xxx$) inside the message (state, importance, priority, etc)~~',
504+
'Class:ActionNotification/Attribute:language' => 'Language~~',
505+
'Class:ActionNotification/Attribute:language+' => 'Language to use for placeholders ($xxx$) inside the message (state, importance, priority, etc)~~',
506506
]);
507507

508508
//

tests/php-unit-tests/unitary-tests/core/Log/ExceptionLogTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function testLogInFile($aLevels, $aExceptions, $sChannel, $aExpectedWrite
6868
$sExpectedFile = __FILE__;
6969
// @formatter:off
7070
$oException = new $aExceptions[$i]("Iteration number $i");
71-
$sExpectedLine = __LINE__-1; //Both should remain on the same line
71+
$sExpectedLine = __LINE__ - 1; //Both should remain on the same line
7272
// @formatter:on
7373

7474
$iExpectedWriteNumber = $aExpectedWriteNumber[$i];

0 commit comments

Comments
 (0)