summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--git_superproject.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/git_superproject.py b/git_superproject.py
index fca0e6f7..ce8161fd 100644
--- a/git_superproject.py
+++ b/git_superproject.py
@@ -307,8 +307,6 @@ class Superproject:
307 ) 307 )
308 return SyncResult(False, False) 308 return SyncResult(False, False)
309 309
310 _PrintBetaNotice()
311
312 should_exit = True 310 should_exit = True
313 if not self._remote_url: 311 if not self._remote_url:
314 self._LogWarning( 312 self._LogWarning(
@@ -452,16 +450,6 @@ class Superproject:
452 return UpdateProjectsResult(manifest_path, False) 450 return UpdateProjectsResult(manifest_path, False)
453 451
454 452
455@functools.lru_cache(maxsize=10)
456def _PrintBetaNotice():
457 """Print the notice of beta status."""
458 print(
459 "NOTICE: --use-superproject is in beta; report any issues to the "
460 "address described in `repo version`",
461 file=sys.stderr,
462 )
463
464
465@functools.lru_cache(maxsize=None) 453@functools.lru_cache(maxsize=None)
466def _UseSuperprojectFromConfiguration(): 454def _UseSuperprojectFromConfiguration():
467 """Returns the user choice of whether to use superproject.""" 455 """Returns the user choice of whether to use superproject."""