1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-12-17 02:21:08 +01:00

Enable trailing whitespace checkstyle check

for all source code regions, including javadoc.
This commit is contained in:
Florian Schmaus 2018-05-09 23:06:12 +02:00
parent 9d61a6de7d
commit e8923b9d16
545 changed files with 3713 additions and 3715 deletions

View file

@ -23,10 +23,10 @@ import org.xmlpull.v1.XmlPullParser;
/**
* A PacketExtension that implements XEP-0224: Attention
*
*
* This extension is expected to be added to message stanzas of type 'headline.'
* Please refer to the XEP for more implementation guidelines.
*
*
* @author Guus der Kinderen, guus.der.kinderen@gmail.com
* @see <a
* href="http://xmpp.org/extensions/xep-0224.html">XEP-0224:&nbsp;Attention</a>
@ -45,7 +45,7 @@ public class AttentionExtension implements ExtensionElement {
/*
* (non-Javadoc)
*
*
* @see org.jivesoftware.smack.packet.PacketExtension#getElementName()
*/
@Override
@ -55,7 +55,7 @@ public class AttentionExtension implements ExtensionElement {
/*
* (non-Javadoc)
*
*
* @see org.jivesoftware.smack.packet.PacketExtension#getNamespace()
*/
@Override
@ -65,7 +65,7 @@ public class AttentionExtension implements ExtensionElement {
/*
* (non-Javadoc)
*
*
* @see org.jivesoftware.smack.packet.PacketExtension#toXML()
*/
@Override
@ -81,7 +81,7 @@ public class AttentionExtension implements ExtensionElement {
* Attention elements have no state/information other than the element name
* and namespace, this implementation simply returns new instances of
* {@link AttentionExtension}.
*
*
* @author Guus der Kinderen, guus.der.kinderen@gmail.com
s */
public static class Provider extends ExtensionElementProvider<AttentionExtension> {