Make sure every file ends with an empty newline
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
a8a06a82d2
commit
bcd13296de
|
@ -37,4 +37,3 @@ $tmpl = new OCP\Template('files', 'list', '');
|
||||||
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
||||||
$tmpl->assign('publicUploadEnabled', $publicUploadEnabled);
|
$tmpl->assign('publicUploadEnabled', $publicUploadEnabled);
|
||||||
$tmpl->printPage();
|
$tmpl->printPage();
|
||||||
|
|
||||||
|
|
|
@ -35,4 +35,3 @@ $tmpl = new OCP\Template('files', 'simplelist', '');
|
||||||
// gridview not available for ie
|
// gridview not available for ie
|
||||||
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
||||||
$tmpl->printPage();
|
$tmpl->printPage();
|
||||||
|
|
||||||
|
|
|
@ -180,4 +180,3 @@ class SFTPWriteStream implements File {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,4 +36,3 @@ use Exception;
|
||||||
class SharingRightsException extends Exception {
|
class SharingRightsException extends Exception {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,4 +22,3 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
\OC::$server->query(\OCA\Files_Versions\AppInfo\Application::class);
|
\OC::$server->query(\OCA\Files_Versions\AppInfo\Application::class);
|
||||||
|
|
||||||
|
|
|
@ -46,4 +46,3 @@ $this->create('files_versions_ajax_getVersions', 'ajax/getVersions.php')
|
||||||
->actionInclude('files_versions/ajax/getVersions.php');
|
->actionInclude('files_versions/ajax/getVersions.php');
|
||||||
$this->create('files_versions_ajax_rollbackVersion', 'ajax/rollbackVersion.php')
|
$this->create('files_versions_ajax_rollbackVersion', 'ajax/rollbackVersion.php')
|
||||||
->actionInclude('files_versions/ajax/rollbackVersion.php');
|
->actionInclude('files_versions/ajax/rollbackVersion.php');
|
||||||
|
|
||||||
|
|
|
@ -69,4 +69,3 @@ $eventDispatcher->addListener(MapperEvent::EVENT_UNASSIGN, $mapperListener);
|
||||||
'name' => $l->t('Tags'),
|
'name' => $l->t('Tags'),
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -22,4 +22,3 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$app = new \OCA\Testing\AppInfo\Application();
|
$app = new \OCA\Testing\AppInfo\Application();
|
||||||
|
|
||||||
|
|
|
@ -84,4 +84,3 @@ return ['routes' => [
|
||||||
'requirements' => ['image' => '.+']
|
'requirements' => ['image' => '.+']
|
||||||
],
|
],
|
||||||
]];
|
]];
|
||||||
|
|
||||||
|
|
|
@ -742,4 +742,3 @@ trait Sharing {
|
||||||
return $sharees;
|
return $sharees;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -167,4 +167,3 @@ trait Trashbin {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -127,4 +127,3 @@ if($notSignedCommits !== []) {
|
||||||
} else {
|
} else {
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,4 +87,3 @@ interface IManager {
|
||||||
public function cleanup(): int;
|
public function cleanup(): int;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,4 +36,3 @@ if ($isEnabled) {
|
||||||
header($_SERVER["SERVER_PROTOCOL"]." 501 Not Implemented", true, 501);
|
header($_SERVER["SERVER_PROTOCOL"]." 501 Not Implemented", true, 501);
|
||||||
exit("501 Not Implemented");
|
exit("501 Not Implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue