summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2015-01-21 10:23:20 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-01-21 10:23:20 +0000
commita928a1fb36bfb962c3894ce2e976ff81e82345cc (patch)
treedcff2a8c418c64e445c4055782823d3c0650b6d1
parentb131ebca5c4aaab6aef7975a819d86c1afadbb4d (diff)
parent70af3d949171b22f70a87b1f0dde15f561ed4ca9 (diff)
downloadlibcore-a928a1fb36bfb962c3894ce2e976ff81e82345cc.zip
libcore-a928a1fb36bfb962c3894ce2e976ff81e82345cc.tar.gz
libcore-a928a1fb36bfb962c3894ce2e976ff81e82345cc.tar.bz2
am 70af3d94: Merge "Clarify comment on private method."
* commit '70af3d949171b22f70a87b1f0dde15f561ed4ca9': Clarify comment on private method.
-rw-r--r--luni/src/main/java/java/lang/System.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/luni/src/main/java/java/lang/System.java b/luni/src/main/java/java/lang/System.java
index 9425894..51674e7 100644
--- a/luni/src/main/java/java/lang/System.java
+++ b/luni/src/main/java/java/lang/System.java
@@ -780,7 +780,9 @@ public final class System {
/**
* Inits an unchangeable system property with the given value.
- * This is useful when the environment needs to change under native bridge emulation.
+ *
+ * This is called from native code when the environment needs to change under native
+ * bridge emulation.
*/
private static void initUnchangeableSystemProperty(String name, String value) {
checkPropertyName(name);