Skip to content

Commit

Permalink
Modified ApplicationId to implement Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
sarutak committed Sep 29, 2014
1 parent 9ff4851 commit dfc83fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/main/java/org/apache/spark/ApplicationId.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@

package org.apache.spark;

import java.io.Serializable;

/**
* This class represents unique application id for identifying each application
*/
public class ApplicationId {
public class ApplicationId implements Serializable {

private String appId;

Expand Down

0 comments on commit dfc83fd

Please sign in to comment.