Skip to content

Commit

Permalink
Cleanup inspection warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
stokito committed Mar 27, 2015
1 parent 3588d81 commit e7950dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ protected Object resolve(final Object iContent) {
if (context == null || iContent == null)
return iContent;

Object value = null;
Object value;
if (iContent instanceof String) {
if (((String) iContent).startsWith("$") && !((String) iContent).startsWith(OSystemVariableResolver.VAR_BEGIN))
value = context.getVariable(iContent.toString());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @author Gregor Frey
*/
public class OVertexTransformerNGTest extends ETLBaseTest {
public class OVertexTransformerTest extends ETLBaseTest {
@Override
public void setUp() {
super.setUp();
Expand Down

0 comments on commit e7950dc

Please sign in to comment.