You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ga...@apache.org on 2018/12/31 11:05:51 UTC

[flink] branch master updated: [hotfix][runtime] Fix typo in FlinkUserCodeClassLoaders Javadoc

This is an automated email from the ASF dual-hosted git repository.

gary pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c1f458  [hotfix][runtime] Fix typo in FlinkUserCodeClassLoaders Javadoc
5c1f458 is described below

commit 5c1f458420c888d6e839f94d1746b2e037fa5ad1
Author: leesf <49...@qq.com>
AuthorDate: Mon Dec 31 19:05:43 2018 +0800

    [hotfix][runtime] Fix typo in FlinkUserCodeClassLoaders Javadoc
---
 .../flink/runtime/execution/librarycache/FlinkUserCodeClassLoaders.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/execution/librarycache/FlinkUserCodeClassLoaders.java b/flink-runtime/src/main/java/org/apache/flink/runtime/execution/librarycache/FlinkUserCodeClassLoaders.java
index 59536a1..f4740ac 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/execution/librarycache/FlinkUserCodeClassLoaders.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/execution/librarycache/FlinkUserCodeClassLoaders.java
@@ -73,7 +73,7 @@ public class FlinkUserCodeClassLoaders {
 	}
 
 	/**
-	 * Regular URLClassLoader that first loads from the parent and only after that form the URLs.
+	 * Regular URLClassLoader that first loads from the parent and only after that from the URLs.
 	 */
 	static class ParentFirstClassLoader extends URLClassLoader {