Skip to content

Commit

Permalink
Commit formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
eolivelli committed Jun 1, 2022
1 parent 4b1aca7 commit dfe71a1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
*/
package org.apache.activemq.filter;

/**
* A default entry in a DestinationMap which holds a single value.
*
*/
/** A default entry in a DestinationMap which holds a single value. */
@SuppressWarnings("rawtypes")
public class DefaultDestinationMapEntry extends DestinationMapEntry {
private DestinationMapEntry value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@

import org.apache.activemq.command.*;

/**
* A base class for entry objects used to construct a destination based policy map.
*
*/
/** A base class for entry objects used to construct a destination based policy map. */
public abstract class DestinationMapEntry<T> implements Comparable<T> {

protected ActiveMQDestination destination;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public static void deregisterFunction(String name) {
* Constructs a function call expression with the named function and argument list.
*
* <p>Use createFunctionCall() to create instances.
*
*/
protected FunctionCallExpression(String func_name, List<Expression> args)
throws invalidFunctionExpressionException {
Expand Down
4 changes: 2 additions & 2 deletions pulsar-jms-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@
<configuration>
<tasks>
<echo>copy filters</echo>
<mkdir dir="${project.build.outputDirectory}/filters" />
<copy verbose="true" file="${basedir}/../pulsar-jms-filters/target/pulsar-jms-${project.version}-nar.nar" tofile="${project.build.outputDirectory}/filters/jms-filter.nar" />
<mkdir dir="${project.build.outputDirectory}/filters"/>
<copy verbose="true" file="${basedir}/../pulsar-jms-filters/target/pulsar-jms-${project.version}-nar.nar" tofile="${project.build.outputDirectory}/filters/jms-filter.nar"/>
</tasks>
</configuration>
</execution>
Expand Down
4 changes: 2 additions & 2 deletions pulsar-jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@
<configuration>
<tasks>
<echo>copy filters</echo>
<mkdir dir="${project.build.outputDirectory}/filters" />
<copy verbose="true" file="${basedir}/../pulsar-jms-filters/target/pulsar-jms-filters-${project.version}.jar" tofile="${project.build.outputDirectory}/filters/jms-filter.nar" />
<mkdir dir="${project.build.outputDirectory}/filters"/>
<copy verbose="true" file="${basedir}/../pulsar-jms-filters/target/pulsar-jms-filters-${project.version}.jar" tofile="${project.build.outputDirectory}/filters/jms-filter.nar"/>
</tasks>
</configuration>
</execution>
Expand Down

0 comments on commit dfe71a1

Please sign in to comment.