You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2007/08/17 11:13:01 UTC

svn commit: r566977 - /felix/trunk/shell/src/main/java/org/apache/felix/shell/impl/PsCommandImpl.java

Author: cziegeler
Date: Fri Aug 17 02:12:59 2007
New Revision: 566977

URL: http://svn.apache.org/viewvc?view=rev&rev=566977
Log:
Organize imports, remove unused casts and remove trailing spaces - no other changes this time

Modified:
    felix/trunk/shell/src/main/java/org/apache/felix/shell/impl/PsCommandImpl.java

Modified: felix/trunk/shell/src/main/java/org/apache/felix/shell/impl/PsCommandImpl.java
URL: http://svn.apache.org/viewvc/felix/trunk/shell/src/main/java/org/apache/felix/shell/impl/PsCommandImpl.java?view=diff&rev=566977&r1=566976&r2=566977
==============================================================================
--- felix/trunk/shell/src/main/java/org/apache/felix/shell/impl/PsCommandImpl.java (original)
+++ felix/trunk/shell/src/main/java/org/apache/felix/shell/impl/PsCommandImpl.java Fri Aug 17 02:12:59 2007
@@ -1,4 +1,4 @@
-/* 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,11 +19,13 @@
 package org.apache.felix.shell.impl;
 
 import java.io.PrintStream;
-import java.util.Dictionary;
 import java.util.StringTokenizer;
 
 import org.apache.felix.shell.Command;
-import org.osgi.framework.*;
+import org.osgi.framework.Bundle;
+import org.osgi.framework.BundleContext;
+import org.osgi.framework.Constants;
+import org.osgi.framework.ServiceReference;
 import org.osgi.service.startlevel.StartLevel;
 
 public class PsCommandImpl implements Command