File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
src/main/kotlin/com/coder/toolbox/util Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,9 @@ const val TOKEN = "token"
77const val WORKSPACE = " workspace"
88const val AGENT_NAME = " agent"
99const val AGENT_ID = " agent_id"
10- private const val FOLDER = " folder"
11- private const val IDE_DOWNLOAD_LINK = " ide_download_link"
1210private const val IDE_PRODUCT_CODE = " ide_product_code"
1311private const val IDE_BUILD_NUMBER = " ide_build_number"
14- private const val IDE_PATH_ON_HOST = " project_path"
12+ private const val PROJECT_PATH = " project_path"
1513
1614// Helper functions for reading from the map. Prefer these to directly
1715// interacting with the map.
@@ -28,10 +26,8 @@ fun Map<String, String?>.agentName() = this[AGENT_NAME]
2826
2927fun Map <String , String ?>.agentID () = this [AGENT_ID ]
3028
31- fun Map <String , String >.folder () = this [FOLDER ]
32-
3329fun Map <String , String >.ideProductCode () = this [IDE_PRODUCT_CODE ]
3430
3531fun Map <String , String >.ideBuildNumber () = this [IDE_BUILD_NUMBER ]
3632
37- fun Map <String , String >.projectPath () = this [IDE_PATH_ON_HOST ]
33+ fun Map <String , String >.projectPath () = this [PROJECT_PATH ]
You can’t perform that action at this time.
0 commit comments