Skip to content

Commit db8aea2

Browse files
author
EastWood Yang
committed
update
1 parent e4bf939 commit db8aea2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

micro.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def microModuleHandler = { ->
6060
File microModulePropertiesFile = new File(microModuleDir.absolutePath + '\\micro.properties');
6161
if (!microModulePropertiesFile.exists()) return
6262

63-
// read library properties
63+
// read micro module properties
6464
def microModuleProperties = new Properties()
6565
microModulePropertiesFile.withInputStream { microModuleProperties.load(it) }
6666
microModuleProperties = new ConfigSlurper().parse(microModuleProperties)

micro_reference.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ addLibrary = { libraryPath ->
5050

5151
def libraryName = file(libraryPath).name
5252

53-
// read library properties
53+
// read micro module properties
5454
def libraryProperties = new Properties()
5555
libraryPropertiesFile.withInputStream { libraryProperties.load(it) }
5656
libraryProperties = new ConfigSlurper().parse(libraryProperties)

0 commit comments

Comments
 (0)