summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2018-01-24 21:33:09 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2018-01-24 21:33:09 -0500
commit1ee25d07e37ba5eb2cc932d7fb3d2c17163ca7ef (patch)
tree1e858bfd70fec2d7ca4f2284f5c23e8e3936834c /src
parentd210abef152cf379de7ad8bd4cab62c3432451e3 (diff)
downloadgroovy-sandbox-1ee25d07e37ba5eb2cc932d7fb3d2c17163ca7ef.tar.gz
Refactor namespace in code
Signed-off-by: Joseph Hunkeler <jhunkeler@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/edu/stsci/Conda.groovy2
-rw-r--r--src/edu/stsci/CondaInstaller.groovy4
-rw-r--r--src/edu/stsci/OSInfo.groovy2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/edu/stsci/Conda.groovy b/src/edu/stsci/Conda.groovy
index dc67052..cd2d829 100644
--- a/src/edu/stsci/Conda.groovy
+++ b/src/edu/stsci/Conda.groovy
@@ -1,4 +1,4 @@
-package org.stsci
+package edu.stsci
class Conda implements Serializable {
public String prefix
diff --git a/src/edu/stsci/CondaInstaller.groovy b/src/edu/stsci/CondaInstaller.groovy
index 50f7f50..917dabf 100644
--- a/src/edu/stsci/CondaInstaller.groovy
+++ b/src/edu/stsci/CondaInstaller.groovy
@@ -1,5 +1,5 @@
-package org.stsci
-import org.stsci.OSInfo
+package edu.stsci
+import edu.stsci.OSInfo
class CondaInstaller implements Serializable {
OSInfo os
diff --git a/src/edu/stsci/OSInfo.groovy b/src/edu/stsci/OSInfo.groovy
index 04375f8..1d679bf 100644
--- a/src/edu/stsci/OSInfo.groovy
+++ b/src/edu/stsci/OSInfo.groovy
@@ -1,4 +1,4 @@
-package org.stsci
+package edu.stsci
class OSInfo implements Serializable {
public String name