From 05ff7e7f9299d3f780e78045759cd3a4798db2c5 Mon Sep 17 00:00:00 2001 From: Laurent Le Brun Date: Thu, 7 Jan 2016 15:00:31 +0000 Subject: Add list.append and list.extend to the documentation -- MOS_MIGRATED_REVID=111600744 --- src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/main/java/com/google/devtools/build/lib') diff --git a/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java b/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java index b6405f6ade..08455bdc84 100644 --- a/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java +++ b/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java @@ -1245,7 +1245,6 @@ public class MethodLibrary { name = "append", objectType = MutableList.class, returnType = Runtime.NoneType.class, - documented = false, doc = "Adds an item to the end of the list.", mandatoryPositionals = { @Param(name = "self", type = MutableList.class, doc = "This list."), @@ -1266,7 +1265,6 @@ public class MethodLibrary { name = "extend", objectType = MutableList.class, returnType = Runtime.NoneType.class, - documented = false, doc = "Adds all items to the end of the list.", mandatoryPositionals = { @Param(name = "self", type = MutableList.class, doc = "This list."), -- cgit v1.2.3