Drop unneeded generic type specifiers
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / AbstractSchemaContext.java
index e04d72a1b3d45c12d7f91186061bf7c1c0c2660f..28c4ab417f4603ab704087985ad05707fd20dfb2 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
 package org.opendaylight.yangtools.yang.model.util;
 
 import com.google.common.base.Optional;
@@ -117,7 +125,7 @@ public abstract class AbstractSchemaContext implements SchemaContext {
     @Override
     public Set<Module> findModuleByNamespace(final URI namespace) {
         final Set<Module> ret = getNamespaceToModules().get(namespace);
-        return ret == null ? Collections.<Module>emptySet() : ret;
+        return ret == null ? Collections.emptySet() : ret;
     }
 
     @Override