Skip to content

Commit

Permalink
ARTEMIS-5104 Remove unused private fields
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Oct 16, 2024
1 parent 9380235 commit a8d5dc2
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ public static ActiveMQMessage createMessage(final ClientMessage message,

private boolean clientAck;

private long jmsDeliveryTime;


/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.apache.activemq.artemis.cli.commands.Run;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.descriptor.PluginDescriptor;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
Expand All @@ -33,8 +32,6 @@
@Mojo(name = "cli", defaultPhase = LifecyclePhase.VERIFY, threadSafe = true)
public class ArtemisCLIPlugin extends ArtemisAbstractPlugin {

private PluginDescriptor descriptor;

@Parameter(defaultValue = "${noServer}")
boolean ignore;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ public class ArtemisDependencyDocPlugin extends ArtemisAbstractPlugin {
@Parameter
String name;

/**
* The plugin descriptor
*/
private PluginDescriptor descriptor;

@Parameter
private String[] groupOrder;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ public class ArtemisDependencyScanPlugin extends ArtemisAbstractPlugin {
@Parameter
String name;

/**
* The plugin descriptor
*/
private PluginDescriptor descriptor;

@Parameter
private String[] libListWithDeps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,6 @@ public final class ActiveMQRASessionFactoryImpl extends ActiveMQConnectionForCon
*/
private final Set<TemporaryTopic> tempTopics = new HashSet<>();

private boolean allowLocalTransaction;

/**
* Constructor
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public enum PrimaryStopping {
}
}

private int finalMessage;
private PrimaryStopping primaryStopping;

public ReplicationPrimaryIsStoppingMessage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public class GroupFirstMessageReference implements MessageReference {
private final MessageReference messageReference;
private final SimpleString key;
private volatile Message message;
private volatile PagingStore owner;

public GroupFirstMessageReference(SimpleString key, MessageReference messageReference) {
this.messageReference = messageReference;
Expand Down

0 comments on commit a8d5dc2

Please sign in to comment.