Skip to content

Commit 8d1928a

Browse files
committed
cleanup
Signed-off-by: olivier lamy <[email protected]>
1 parent 4a3b37e commit 8d1928a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/codehaus/plexus/velocity/ContextClassLoaderResourceLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void init( ExtendedProperties configuration)
4141
public synchronized InputStream getResourceStream( String name )
4242
throws ResourceNotFoundException
4343
{
44-
InputStream result = null;
44+
InputStream result;
4545

4646
if (name == null || name.length() == 0)
4747
{

src/main/java/org/codehaus/plexus/velocity/VelocityComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
public interface VelocityComponent
2626
{
27-
public final static String ROLE = VelocityComponent.class.getName();
27+
String ROLE = VelocityComponent.class.getName();
2828

2929
VelocityEngine getEngine();
3030
}

0 commit comments

Comments
 (0)