diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 08:25:30 +0200 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 08:25:30 +0200 |
commit | ff5f9370c4a004f48cc036eb437a58cefb29962d (patch) | |
tree | a457c717aa3842a8791f5e84604b0f55a897c055 /lib/app.php | |
parent | ddfcc96ab5e72e90bcb0858ac92e617e6d70a993 (diff) | |
download | nextcloud-server-ff5f9370c4a004f48cc036eb437a58cefb29962d.tar.gz nextcloud-server-ff5f9370c4a004f48cc036eb437a58cefb29962d.zip |
Checkstyle: MultiLineCondition
Diffstat (limited to 'lib/app.php')
-rwxr-xr-x | lib/app.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/app.php b/lib/app.php index cb68ea3ddde..2319c50950e 100755 --- a/lib/app.php +++ b/lib/app.php @@ -556,10 +556,7 @@ class OC_App{ while( $file = readdir( $dh ) ) { - if ( - $file[0] != '.' - and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php' ) - ) { + if ($file[0] != '.' and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php')) { $apps[] = $file; |