Author: elecharny
Date: Wed May 22 13:01:51 2013
New Revision: 1485197
URL: http://svn.apache.org/r1485197
Log:
Minor formatting
Modified:
directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/SchemaService.java
Modified: directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/SchemaService.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/SchemaService.java?rev=1485197&r1=1485196&r2=1485197&view=diff
==============================================================================
--- directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/SchemaService.java
(original)
+++ directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/SchemaService.java
Wed May 22 13:01:51 2013
@@ -310,7 +310,7 @@ public class SchemaService
new LookupOperationContext( null, schemaModificationAttributesDn
) ) );
}
- return ( Entry ) schemaSubentry.clone();
+ return schemaSubentry.clone();
}
}
@@ -331,14 +331,15 @@ public class SchemaService
new LookupOperationContext( null, schemaModificationAttributesDn ) )
);
}
- return ( Entry ) schemaSubentry.clone();
+ return schemaSubentry.clone();
}
/**
* {@inheritDoc}
*/
- public static Entry getSubschemaEntry( DirectoryService directoryService, FilteringOperationContext
operationContext ) throws LdapException
+ public static Entry getSubschemaEntry( DirectoryService directoryService, FilteringOperationContext
operationContext )
+ throws LdapException
{
SchemaManager schemaManager = directoryService.getSchemaManager();
|