diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:18:03 +0100 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:18:03 +0100 |
commit | 1205749f8cec19c30c9f58f7f97832fac9a4c502 (patch) | |
tree | 85b6a1b8c829645775ec8ea70dd4ccf9d0bb8c4d /lib/util.php | |
parent | 8ac3849a95bd6a733cce9134bab4bf38c5c0fadd (diff) | |
download | nextcloud-server-1205749f8cec19c30c9f58f7f97832fac9a4c502.tar.gz nextcloud-server-1205749f8cec19c30c9f58f7f97832fac9a4c502.zip |
Checkstyle: Fix the last two SpaceBeforeOpenBrace
Diffstat (limited to 'lib/util.php')
-rwxr-xr-x | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index d16424ce4e1..40b44bf9d6e 100755 --- a/lib/util.php +++ b/lib/util.php @@ -559,7 +559,7 @@ class OC_Util { // creating a test file $testfile = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ).'/'.$filename; - if(file_exists($testfile)){// already running this test, possible recursive call + if(file_exists($testfile)) {// already running this test, possible recursive call return false; } |