Commit 97156ac7 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Removed unused methods.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@564 b35dd754-fafc-0310-a699-88a17e54d16e
parent e5b7c66a
...@@ -114,47 +114,6 @@ public class HistoryRequest { ...@@ -114,47 +114,6 @@ public class HistoryRequest {
return since; return since;
} }
/**
* Sets the total number of characters to receive in the history.
*
* @param maxChars the total number of characters to receive in the history.
*/
public void setMaxChars(int maxChars) {
this.maxChars = maxChars;
}
/**
* Sets the total number of messages to receive in the history.
*
* @param maxStanzas the total number of messages to receive in the history.
*/
public void setMaxStanzas(int maxStanzas) {
this.maxStanzas = maxStanzas;
}
/**
* Sets the number of seconds to use to filter the messages received during that time.
* In other words, only the messages received in the last "X" seconds will be included in
* the history.
*
* @param seconds the number of seconds to use to filter the messages received during
* that time.
*/
public void setSeconds(int seconds) {
this.seconds = seconds;
}
/**
* Sets the since date to use to filter the messages received during that time.
* In other words, only the messages received since the datetime specified will be
* included in the history.
*
* @param since the since date to use to filter the messages received during that time.
*/
public void setSince(Date since) {
this.since = since;
}
/** /**
* Returns true if the history has been configured with some values. * Returns true if the history has been configured with some values.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment