(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / core / ProvidedInterfaceImplementation.java
index bce21aaadbf6a154dca090dfbad2d50f7836cd65..f6a6485f8a556ff9e7637a436e11ddbf3fbb04ed 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;
 
 /**
@@ -21,9 +21,9 @@ package org.wamblee.system.core;
  * @author Erik Brakkee
  */
 class ProvidedInterfaceImplementation {
-    private ProvidedInterface _provided;
+    private ProvidedInterface provided;
 
-    private Object _implementation;
+    private Object implementation;
 
     /**
      * Constructs the object.
@@ -35,8 +35,8 @@ class ProvidedInterfaceImplementation {
      */
     public ProvidedInterfaceImplementation(ProvidedInterface aProvided,
         Object aImplementation) {
-        _provided = aProvided;
-        _implementation = aImplementation;
+        provided = aProvided;
+        implementation = aImplementation;
     }
 
     /**
@@ -44,7 +44,7 @@ class ProvidedInterfaceImplementation {
      * @return The provided interface.
      */
     public ProvidedInterface getProvided() {
-        return _provided;
+        return provided;
     }
 
     /**
@@ -57,6 +57,6 @@ class ProvidedInterfaceImplementation {
      * @return Implementation.
      */
     public <T> T getImplementation(Class<T> aType) {
-        return (T) _implementation;
+        return (T) implementation;
     }
 }