mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
Merge remote-tracking branch 'ignite/4.2' into 4.2
This commit is contained in:
commit
f7ae216138
2 changed files with 2 additions and 2 deletions
|
@ -159,7 +159,7 @@ public final class BoBManager extends Manager {
|
||||||
|
|
||||||
public BoBInfo addBoB(BoBData bobData) {
|
public BoBInfo addBoB(BoBData bobData) {
|
||||||
// We only support SHA-1 for now.
|
// We only support SHA-1 for now.
|
||||||
BoBHash bobHash = new BoBHash("sha1", SHA1.hex(bobData.getContent()));
|
BoBHash bobHash = new BoBHash(SHA1.hex(bobData.getContent()), "sha1");
|
||||||
|
|
||||||
Set<BoBHash> bobHashes = Collections.singleton(bobHash);
|
Set<BoBHash> bobHashes = Collections.singleton(bobHash);
|
||||||
bobHashes = Collections.unmodifiableSet(bobHashes);
|
bobHashes = Collections.unmodifiableSet(bobHashes);
|
||||||
|
|
|
@ -1011,7 +1011,7 @@ public class MultiUserChat {
|
||||||
*
|
*
|
||||||
* @param presenceInterceptor the stanza(/packet) interceptor to remove.
|
* @param presenceInterceptor the stanza(/packet) interceptor to remove.
|
||||||
*/
|
*/
|
||||||
public void removePresenceInterceptor(StanzaListener presenceInterceptor) {
|
public void removePresenceInterceptor(PresenceListener presenceInterceptor) {
|
||||||
presenceInterceptors.remove(presenceInterceptor);
|
presenceInterceptors.remove(presenceInterceptor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue