summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/publish/publishers/PublisherUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/publish/publishers/PublisherUtils.java')
-rw-r--r--pki/base/common/src/com/netscape/cms/publish/publishers/PublisherUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/pki/base/common/src/com/netscape/cms/publish/publishers/PublisherUtils.java b/pki/base/common/src/com/netscape/cms/publish/publishers/PublisherUtils.java
index 314e87e63..af8d283dd 100644
--- a/pki/base/common/src/com/netscape/cms/publish/publishers/PublisherUtils.java
+++ b/pki/base/common/src/com/netscape/cms/publish/publishers/PublisherUtils.java
@@ -126,7 +126,7 @@ public class PublisherUtils {
* there'll be trouble if the Vector contains something other
* than just Strings
*/
- public static String[] getStringArrayFromVector(Vector v) {
+ public static String[] getStringArrayFromVector(Vector<String> v) {
String s[] = new String[v.size()];
v.copyInto(s);