don't expose method for no reason

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2019-09-23 12:43:14 +02:00
parent ed79b2cbe0
commit f81d18c816
No known key found for this signature in database
GPG key ID: 7424F1874854DF23

View file

@ -714,7 +714,7 @@ class UserBackend implements IApacheBackend, UserInterface, IUserBackend {
/**
* @see \OCA\User_LDAP\Access::convertObjectGUID2Str
*/
public function convertObjectGUID2Str($oguid) {
protected function convertObjectGUID2Str($oguid) {
$hex_guid = bin2hex($oguid);
$hex_guid_to_guid_str = '';
for($k = 1; $k <= 4; ++$k) {