Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
SPARK-22830 Scala Coding style - scala style failed fixed
  • Loading branch information
chetkhatri committed Dec 20, 2017
commit 319e282223d85018d4efd48065b5dc54be1149e9
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,11 @@ object Analytics extends Logging {

def main(args: Array[String]): Unit = {
if (args.length < 2) {
val usage = """
|Usage: Analytics <taskType> <file> --numEPart=<num_edge_partitions> [other options]
|Supported 'taskType' as follows:
val usage = """Usage: Analytics <taskType> <file> --numEPart=<num_edge_partitions>
|[other options] Supported 'taskType' as follows:
|pagerank Compute PageRank
|cc Compute the connected components of vertices
|triangles Count the number of triangles""".stripMargin

System.err.println(usage)
System.exit(1)
}
Expand Down