aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program
diff options
context:
space:
mode:
authorEduardo Julian2021-08-29 21:59:48 -0400
committerEduardo Julian2021-08-29 21:59:48 -0400
commitef437d6584d8fd863c0dab276e5a3d4dc094767b (patch)
treee9167f045de84e7865815178e967ee85584df088 /stdlib/source/program
parentff537895fe9c24f37a0ce11b640af5d4882571a5 (diff)
De-taggification | part 0
Diffstat (limited to 'stdlib/source/program')
-rw-r--r--stdlib/source/program/aedifex/command/build.lux2
-rw-r--r--stdlib/source/program/aedifex/hash.lux2
-rw-r--r--stdlib/source/program/aedifex/repository/identity.lux2
3 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/program/aedifex/command/build.lux b/stdlib/source/program/aedifex/command/build.lux
index 421fd7086..bcda2401b 100644
--- a/stdlib/source/program/aedifex/command/build.lux
+++ b/stdlib/source/program/aedifex/command/build.lux
@@ -227,7 +227,7 @@
(import: java/lang/System
["#::."
- (#static getProperty [java/lang/String] #io #try java/lang/String)])
+ ("static" getProperty [java/lang/String] "io" "try" java/lang/String)])
(def: windows?
Bit
diff --git a/stdlib/source/program/aedifex/hash.lux b/stdlib/source/program/aedifex/hash.lux
index 403fdb677..d0dde1c65 100644
--- a/stdlib/source/program/aedifex/hash.lux
+++ b/stdlib/source/program/aedifex/hash.lux
@@ -28,7 +28,7 @@
(import: java/security/MessageDigest
["#::."
- (#static getInstance [java/lang/String] java/security/MessageDigest)
+ ("static" getInstance [java/lang/String] java/security/MessageDigest)
(digest [[byte]] [byte])])
(abstract: .public SHA-1 {} Any)
diff --git a/stdlib/source/program/aedifex/repository/identity.lux b/stdlib/source/program/aedifex/repository/identity.lux
index 533b4fb4e..59d0fdcba 100644
--- a/stdlib/source/program/aedifex/repository/identity.lux
+++ b/stdlib/source/program/aedifex/repository/identity.lux
@@ -35,7 +35,7 @@
(import: java/util/Base64
["#::."
- (#static getEncoder [] java/util/Base64$Encoder)])
+ ("static" getEncoder [] java/util/Base64$Encoder)])
(def: .public (basic_auth user password)
(-> User Password Text)