code style improvements.
[utils] / system / general / src / main / java / org / wamblee / system / core / DefaultScope.java
index e0de67904ca787b98b3270b687df42be1e286543..d3f62a7b88404a3ae6612422ec8b28c4d5114094 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.system.core;
 
 import java.util.ArrayList;
@@ -132,8 +132,7 @@ public class DefaultScope implements Scope {
             }
 
             return null;
-        } else {
-            return providedIntf.getImplementation(aType);
         }
+        return providedIntf.getImplementation(aType);
     }
 }