public String tryGetProperty()

in runAs-agent/src/main/java/jetbrains/buildServer/runAs/agent/ProfileParametersServiceImpl.java [78:88]


  public String tryGetProperty(@NotNull final String profile, @NotNull final String key) {
    Configuration properties = myProfiles.get(profile);
    if(properties == null) {
      properties = myProfiles.get(profile + ".properties");
      if(properties == null) {
        return null;
      }
    }

    return properties.getProperty(key);
  }