Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
squito committed Apr 27, 2015
1 parent 7bd4d15 commit a157a2f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ private[v1] object AllJobsResource {
statusToJobs
}


def convertJobData(
job: JobUIData,
listener: JobProgressListener,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ private[v1] class JsonRootResource extends UIRootFromServletContext {
new OneJobResource(uiRoot)
}


@Path("applications/{appId}/executors")
def getExecutors(): ExecutorListResource = {
new ExecutorListResource(uiRoot)
Expand Down Expand Up @@ -97,7 +96,6 @@ private[spark] object JsonRootResource {
}
}


/**
* This trait is shared by the all the root containers for application UI information --
* the HistoryServer, the Master UI, and the application UI. This provides the common
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ private[ui] class AllJobsPage(parent: JobsTab) extends WebUIPage("") {
s"${listener.numCompletedJobs}, only showing ${completedJobs.size}"
}


val summary: NodeSeq =
<div>
<ul class="unstyled">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ class HistoryServerSuite extends FunSuite with BeforeAndAfter with Matchers with
badStageId2._1 should be (HttpServletResponse.SC_NOT_FOUND)
// will take some mucking w/ jersey to get a better error msg in this case


val badQuantiles = getContentAndCode(
"applications/local-1427397477963/stages/20/0/taskSummary?quantiles=foo,0.1")
badQuantiles._1 should be (HttpServletResponse.SC_BAD_REQUEST)
Expand Down Expand Up @@ -183,7 +182,6 @@ class HistoryServerSuite extends FunSuite with BeforeAndAfter with Matchers with
HistoryServerSuite.getUrl(new URL(s"http://localhost:$port/json/v1/$path"))
}


def generateExpectation(path: String): Unit = {
val json = getUrl(path)
val dir = new File(expRoot, path)
Expand All @@ -192,7 +190,6 @@ class HistoryServerSuite extends FunSuite with BeforeAndAfter with Matchers with
out.write(json)
out.close()
}

}

object HistoryServerSuite {
Expand Down Expand Up @@ -242,5 +239,4 @@ object HistoryServerSuite {
"got code: " + code + " when getting " + path + " w/ error: " + error)
}
}

}

0 comments on commit a157a2f

Please sign in to comment.