Skip to content

Commit

Permalink
mark EnumUtil as @Private
Browse files Browse the repository at this point in the history
  • Loading branch information
squito committed May 5, 2015
1 parent ec140a2 commit 3347b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/apache/spark/util/EnumUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
package org.apache.spark.util;

import com.google.common.base.Joiner;
import org.apache.spark.annotation.DeveloperApi;
import org.apache.spark.annotation.Private;

@DeveloperApi
@Private
public class EnumUtil {
public static <E extends Enum<E>> E parseIgnoreCase(Class<E> clz, String str) {
E[] constants = clz.getEnumConstants();
Expand Down

0 comments on commit 3347b72

Please sign in to comment.