Remove unused configuration

This commit is contained in:
Chris Eager
2022-03-03 17:55:25 -08:00
committed by Chris Eager
parent 1395dcc0be
commit 54207254f1
3 changed files with 0 additions and 49 deletions

View File

@@ -1,20 +0,0 @@
/*
* Copyright 2013-2020 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.configuration;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.validation.constraints.Min;
public class PushConfiguration {
@JsonProperty
@Min(0)
private int queueSize = 200;
public int getQueueSize() {
return queueSize;
}
}