Skip to content

Commit cd2ac09

Browse files
committed
Do not automatically update the results measure from BCL
1 parent fd8611d commit cd2ac09

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if(CCACHE_PROGRAM)
1616
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE_PROGRAM} CACHE FILEPATH "C compiler cache used")
1717
endif()
1818

19-
project(OpenStudioApplication VERSION 1.7.1)
19+
project(OpenStudioApplication VERSION 1.7.2)
2020

2121
# Check system info globally so we can use it everywhere after: Has to be done before FindOpenStudioSDK.cmake
2222
if(APPLE)

src/openstudio_lib/OSDocument.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1488,14 +1488,6 @@ boost::optional<BCLMeasure> OSDocument::standardReportMeasure() {
14881488
result = BCLMeasure::load(m_resourcesPath / toPath("openstudio_results"));
14891489
}
14901490

1491-
if (m_haveLocalBCL && RemoteBCL::isOnline()) {
1492-
RemoteBCL remoteBCL;
1493-
boost::optional<BCLMeasure> onlineResult = remoteBCL.getMeasure(uid);
1494-
if (onlineResult) {
1495-
result = onlineResult;
1496-
}
1497-
}
1498-
14991491
return result;
15001492
}
15011493

0 commit comments

Comments
 (0)