Skip to content

Commit

Permalink
Merge pull request #93 from elvisisking/TEIIDDES-1579
Browse files Browse the repository at this point in the history
TEIIDDES-1579 Remove S-RAMP Dependencies From The Repository Manager API
  • Loading branch information
elvisisking committed Feb 5, 2013
2 parents 1c8af8b + 5dd3f4d commit 9ca7092
Show file tree
Hide file tree
Showing 66 changed files with 4,134 additions and 889 deletions.
12 changes: 10 additions & 2 deletions komodo-common/src/main/java/org/komodo/common/util/StringUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
package org.komodo.common.util;

import java.util.Collections;
import java.util.List;

/**
* Utilities for use with string types.
*/
Expand All @@ -18,15 +21,20 @@ public class StringUtil {
public static final String DEFAULT_DELIMITER = ","; //$NON-NLS-1$

/**
* A empty string array constant.
* An empty string array constant.
*/
public static final String[] EMPTY_ARRAY = {};

/**
* A empty string constant.
* An empty string constant.
*/
public static final String EMPTY_STRING = ""; //$NON-NLS-1$

/**
* An empty string list constant.
*/
public static final List<String> EMPTY_LIST = Collections.emptyList();

/**
* @param strings the strings being joined (cannot be <code>null</code> or empty)
* @return a string combining all input values separated by the default delimiter
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public class RepositoryI18n extends I18n {

public static String missingVdbRootElement;
public static String notVdbArtifact;
public static String repositoryConnectionFailure;

static {
final RepositoryI18n i18n = new RepositoryI18n();
Expand Down

0 comments on commit 9ca7092

Please sign in to comment.