Skip to content

Commit

Permalink
fixing bug in pom.xml
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/igor/dev/stuff/svnbackup/branches/wicketstuff-core-1.4@5552 ef7698a4-5110-0410-9fc6-c7eb3693863f
  • Loading branch information
Rodolfo Hansen committed Sep 23, 2010
1 parent 53cf4b1 commit c3adb54
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
@@ -1,14 +1,14 @@
/*
* $Id: JRGenericResource.java 5335 2010-06-14 13:28:39Z cdeal $ $Revision:
* 1.3 $ $Date: 2010-06-14 09:28:39 -0400 (Mon, 14 Jun 2010) $
*
*
* ==============================================================================
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
Expand All @@ -27,15 +27,17 @@

/**
* A concrete implementation of a JRResource that delegates the common methods to a handler
*
*
* @author cdeal
*/
public class JRConcreteResource<H extends IJRResourceHandler> extends JRResource {
private H handler = null;

private static final long serialVersionUID = 1L;

private H handler = null;

/**
* Constructor for JRConcreteResource
*
*
* @param handler
*/
public JRConcreteResource(H handler) {
Expand All @@ -45,7 +47,7 @@ public JRConcreteResource(H handler) {

/**
* Constructor for JRConcreteResource
*
*
* @param report
* @param handler
*/
Expand All @@ -56,7 +58,7 @@ public JRConcreteResource(InputStream report, H handler) {

/**
* Constructor for JRConcreteResource
*
*
* @param report
* @param handler
*/
Expand All @@ -67,7 +69,7 @@ public JRConcreteResource(URL report, H handler) {

/**
* Constructor for JRConcreteResource
*
*
* @param report
* @param handler
*/
Expand All @@ -78,7 +80,7 @@ public JRConcreteResource(File report, H handler) {

/**
* Constructor for JRConcreteResource
*
*
* @param factory
* @param handler
*/
Expand Down
2 changes: 1 addition & 1 deletion jdk-1.5-parent/jasperreports-parent/pom.xml
Expand Up @@ -6,7 +6,7 @@

<parent>
<groupId>org.wicketstuff</groupId>
<artifactId>jdk-1.5-parent</artifactId>
<artifactId>wicketstuff-core</artifactId>
<version>1.4.13-SNAPSHOT</version>
</parent>

Expand Down

0 comments on commit c3adb54

Please sign in to comment.