You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by po...@apache.org on 2019/06/28 22:19:23 UTC

[incubator-tamaya] branch master updated: LHF: Remove tab

This is an automated email from the ASF dual-hosted git repository.

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tamaya.git


The following commit(s) were added to refs/heads/master by this push:
     new b3c2820  LHF: Remove tab
b3c2820 is described below

commit b3c2820e9878dc3df683e3f0079f2be4829b410a
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Sat Jun 29 00:19:18 2019 +0200

    LHF: Remove tab
---
 code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java b/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java
index e497f99..a01989c 100644
--- a/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java
+++ b/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java
@@ -115,7 +115,7 @@ public class TypeLiteralTest {
         // Create a class hierarchy where B is a subclass of Object and not
         // ParameterizedType, but still takes parameters.
         class A<T> { };
-		class B extends A { };
+        class B extends A { };
         TypeLiteral<List<String>> checker = new TypeLiteral<List<String>>() { };
         checker.getDefinedType(B.class);
     }