Commit 3dbdb0af authored by Matt Tucker's avatar Matt Tucker Committed by matt

Minor tweaks.

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2699 b35dd754-fafc-0310-a699-88a17e54d16e
parent a792488e
...@@ -51,7 +51,7 @@ public interface GroupProvider { ...@@ -51,7 +51,7 @@ public interface GroupProvider {
/** /**
* Deletes the group (optional operation). * Deletes the group (optional operation).
* *
* @param name the name of the group to delete * @param name the name of the group to delete.
* @throws UnsupportedOperationException if the provider does not * @throws UnsupportedOperationException if the provider does not
* support the operation. * support the operation.
*/ */
......
...@@ -427,7 +427,7 @@ public class JiveGlobals { ...@@ -427,7 +427,7 @@ public class JiveGlobals {
} }
String[] propNames = xmlProperties.getChildrenProperties(parent); String[] propNames = xmlProperties.getChildrenProperties(parent);
List values = new ArrayList(); List<String> values = new ArrayList<String>();
for (int i = 0; i < propNames.length; i++) { for (int i = 0; i < propNames.length; i++) {
String propName = propNames[i]; String propName = propNames[i];
String value = getProperty(parent + "." + propName); String value = getProperty(parent + "." + propName);
......
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