Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
9c0a9dce
Commit
9c0a9dce
authored
Nov 28, 2017
by
akrherz
Committed by
Guus der Kinderen
Nov 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix warnings logged from ant javadoc build target
parent
a9d54935
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
10 deletions
+10
-10
JSTLFunctions.java
src/java/org/jivesoftware/admin/JSTLFunctions.java
+1
-1
RoutingTable.java
src/java/org/jivesoftware/openfire/RoutingTable.java
+1
-1
PresenceSubscribeHandler.java
...vesoftware/openfire/handler/PresenceSubscribeHandler.java
+4
-4
UserManager.java
src/java/org/jivesoftware/openfire/user/UserManager.java
+1
-1
DefaultUserPropertyProvider.java
...e/openfire/user/property/DefaultUserPropertyProvider.java
+1
-1
UserPropertyProvider.java
...software/openfire/user/property/UserPropertyProvider.java
+1
-1
SANCertificateIdentityMapping.java
...jivesoftware/util/cert/SANCertificateIdentityMapping.java
+1
-1
No files found.
src/java/org/jivesoftware/admin/JSTLFunctions.java
View file @
9c0a9dce
...
...
@@ -90,7 +90,7 @@ public class JSTLFunctions
* <table>, etc) and converts the '<' and '>' characters to
* their HTML escape sequences. It will also replace LF with <br>.
*
* @see StringUtils#escapeHTMLTags(String)
;
* @see StringUtils#escapeHTMLTags(String)
*/
public
static
String
escapeHTMLTags
(
String
string
)
{
...
...
src/java/org/jivesoftware/openfire/RoutingTable.java
View file @
9c0a9dce
...
...
@@ -240,7 +240,7 @@ public interface RoutingTable {
* if none was found. When running inside of a cluster and a remote node is hosting
* the session then a session surrage will be returned.
*
* @param
jid the address of the session
.
* @param
pair DomainPair that specifies the local/remote server address
.
* @return the outgoing server session associated to the specified XMPP address or null if none was found.
*/
OutgoingServerSession
getServerRoute
(
DomainPair
pair
);
...
...
src/java/org/jivesoftware/openfire/handler/PresenceSubscribeHandler.java
View file @
9c0a9dce
...
...
@@ -504,7 +504,7 @@ public class PresenceSubscribeHandler extends BasicModule implements ChannelHand
* where X is subscribe, subscribed, etc.
* </p>
*
* @param item
The item to be updated
* @param item
SubType
The item to be updated
* @param action The new state change request
* @param isSending True if the roster owner of the item is sending the new state change request
* @return Change changes to apply to the item
...
...
src/java/org/jivesoftware/openfire/user/UserManager.java
View file @
9c0a9dce
...
...
@@ -75,7 +75,7 @@ public class UserManager implements IQResultListener {
* Returns the currently-installed UserPropertyProvider.
*
* <b>Warning:</b> in virtually all cases the user property provider should not be used directly. Instead, use the
* Map returned by {@link User#getProperties()
)
to create, read, update or delete user properties. Failure to do so
* Map returned by {@link User#getProperties()
}
to create, read, update or delete user properties. Failure to do so
* is likely to result in inconsistent data behavior and race conditions. Direct access to the user property
* provider is only provided for special-case logic.
*
...
...
src/java/org/jivesoftware/openfire/user/property/DefaultUserPropertyProvider.java
View file @
9c0a9dce
...
...
@@ -35,7 +35,7 @@ import java.util.concurrent.ConcurrentHashMap;
* this implementation will <em>not</em> throw {@link org.jivesoftware.openfire.user.UserNotFoundException}.
*
* <b>Warning:</b> in virtually all cases a user property provider should not be used directly. Instead, use the
* Map returned by {@link User#getProperties()
)
to create, read, update or delete user properties. Failure to do so
* Map returned by {@link User#getProperties()
}
to create, read, update or delete user properties. Failure to do so
* is likely to result in inconsistent data behavior and race conditions. Direct access to the user property
* provider is only provided for special-case logic.
*
...
...
src/java/org/jivesoftware/openfire/user/property/UserPropertyProvider.java
View file @
9c0a9dce
...
...
@@ -31,7 +31,7 @@ import java.util.Map;
* this respect.
*
* <b>Warning:</b> in virtually all cases a user property provider should not be used directly. Instead, use the
* Map returned by {@link User#getProperties()
)
to create, read, update or delete user properties. Failure to do so
* Map returned by {@link User#getProperties()
}
to create, read, update or delete user properties. Failure to do so
* is likely to result in inconsistent data behavior and race conditions. Direct access to the user property
* provider is only provided for special-case logic.
*
...
...
src/java/org/jivesoftware/util/cert/SANCertificateIdentityMapping.java
View file @
9c0a9dce
...
...
@@ -242,7 +242,7 @@ public class SANCertificateIdentityMapping implements CertificateIdentityMapping
/**
* Parse a UPN value
*
* @param
otherNam
e The ASN.1 representation of the UPN (cannot be null).
* @param
valu
e The ASN.1 representation of the UPN (cannot be null).
* @return The parsed UPN value.
*/
protected
String
parseOtherNameUpn
(
ASN1Primitive
value
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment