Commit dfb69a76 authored by Christian Schudt's avatar Christian Schudt

Remove unnecessary semicolons.

parent 23d6aabc
......@@ -428,7 +428,7 @@ public class XMPPPacketReader {
}
default:
{
;
}
}
}
......
......@@ -446,6 +446,6 @@ public class MulticastRouter extends BasicModule implements ServerFeaturesProvid
/**
* These addressees are the primary recipients of the stanza.
*/
to;
to
}
}
......@@ -36,7 +36,7 @@ class ClearspaceVCardTranslator {
// Represents the type of action that was performed.
enum Action {
MODIFY, CREATE, UPDATE, DELETE, NO_ACTION;
MODIFY, CREATE, UPDATE, DELETE, NO_ACTION
}
/**
......@@ -131,7 +131,7 @@ class ClearspaceVCardTranslator {
*/
enum VCardField {
TITLE, ORG_ORGUNIT, ADR_WORK, ADR_HOME, EMAIL_USERID, EMAIL_PREF_USERID, FN,
PHOTO_TYPE, PHOTO_BINVAL, URL, TZ, PHONE_HOME, PHONE_WORK, FAX_WORK, MOBILE_WORK, PAGER_WORK;
PHOTO_TYPE, PHOTO_BINVAL, URL, TZ, PHONE_HOME, PHONE_WORK, FAX_WORK, MOBILE_WORK, PAGER_WORK
}
private static ClearspaceVCardTranslator instance = new ClearspaceVCardTranslator();
......
......@@ -25,7 +25,7 @@ package org.jivesoftware.openfire.clearspace;
*/
public class ConnectionException extends Exception {
public enum ErrorType {AUTHENTICATION, PAGE_NOT_FOUND, UPDATE_STATE, UNKNOWN_HOST, SERVICE_NOT_AVAIBLE, OTHER};
public enum ErrorType {AUTHENTICATION, PAGE_NOT_FOUND, UPDATE_STATE, UNKNOWN_HOST, SERVICE_NOT_AVAIBLE, OTHER}
private ErrorType errorType;
......
......@@ -77,6 +77,6 @@ public class ExternalComponentConfiguration {
/**
* The XMPP entity is NOT allowed to connect to the server.
*/
blocked;
blocked
}
}
......@@ -255,7 +255,7 @@ public class HistoryStrategy {
*/
public enum Type {
defaulType, none, all, number
};
}
/**
* Obtain the strategy type from string name. See the Type enumeration name
......
......@@ -35,7 +35,7 @@ public abstract class MUCEventDelegate {
HANDLED_BY_DELEGATE,
HANDLED_BY_OPENFIRE,
REJECTED
};
}
/**
* This event will be triggered when an entity joins an existing room.
......
......@@ -141,7 +141,7 @@ public class ClientTrustManager implements X509TrustManager {
Log.debug("ClientTrustManager: Updating CRLs");
useCRLs = false;
try {
CertificateFactory cf = CertificateFactory.getInstance("X.509");;
CertificateFactory cf = CertificateFactory.getInstance("X.509");
X509CRL crl;
......
......@@ -277,7 +277,7 @@ public class MXParser extends org.xmlpull.mxp1.MXParser {
if (eventType == XmlPullParser.END_TAG &&
(ch == ' ' || ch == '\n' || ch == '\t')) {
// ** ADDED CODE (INCLUDING IF STATEMENT)
lastHeartbeat = System.currentTimeMillis();;
lastHeartbeat = System.currentTimeMillis();
}
if(ch == ']') {
if(seenBracket) {
......
......@@ -162,7 +162,7 @@ public class SASLAuthentication {
/**
* SASL negotiation has been successful.
*/
authenticated;
authenticated
}
/**
......
......@@ -53,5 +53,5 @@ public enum TLSStatus {
/**
* Handshaking is OK.
*/
OK;
OK
}
......@@ -2309,5 +2309,5 @@ public abstract class Node {
* Dynamically specify a replyto of the item publisher.
*/
publisher
};
}
}
......@@ -103,6 +103,6 @@ public class RemoteServerConfiguration implements Cacheable, Externalizable {
/**
* The XMPP entity is NOT allowed to connect to the server.
*/
blocked;
blocked
}
}
......@@ -383,6 +383,6 @@ public class RemoteServerManager {
* Only the XMPP entities listed in the <b>allowed list</b> are able to connect to
* the server.
*/
whitelist;
whitelist
}
}
......@@ -1130,7 +1130,7 @@ public class JiveGlobals {
openfireProperties.setProperty(propertyName, openfireProps.get(propertyName));
} else if (!resetProperty(propertyName)) {
Log.warn("Failed to reset encrypted property value for " + propertyName);
};
}
}
securityProperties.deleteProperty(ENCRYPTION_KEY_NEW);
securityProperties.deleteProperty(ENCRYPTION_KEY_OLD);
......
......@@ -136,6 +136,6 @@ public class PropertyEventDispatcher {
/**
* An XML property was deleted.
*/
xml_property_deleted;
xml_property_deleted
}
}
\ No newline at end of file
......@@ -745,7 +745,7 @@ public class XMLProperties {
}
boolean error = false;
// Write data out to a temporary file first.
File tempFile = new File(file.getParentFile(), file.getName() + ".tmp");;
File tempFile = new File(file.getParentFile(), file.getName() + ".tmp");
try (Writer writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(tempFile), StandardCharsets.UTF_8))) {
OutputFormat prettyPrinter = OutputFormat.createPrettyPrint();
XMLWriter xmlWriter = new XMLWriter(writer, prettyPrinter);
......
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