Skip to content

Commit

Permalink
rm usages of imports with string arguments in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
baroquebobcat committed Oct 10, 2015
1 parent fd7812a commit 74568fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/construction.mirah
Expand Up @@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import "java.lang.StringBuffer"
import "java.util.ArrayList"
import java.lang.StringBuffer
import java.util.ArrayList

list = ArrayList.new
sb = StringBuffer.new("Hello")
Expand Down
2 changes: 1 addition & 1 deletion examples/fields.mirah
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import 'java.util.ArrayList'
import java.util.ArrayList

class Bar
def initialize
Expand Down
2 changes: 1 addition & 1 deletion examples/java_thing.mirah
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import "java.lang.System"
import java.lang.System

def foo
home = System.getProperty "java.home"
Expand Down

0 comments on commit 74568fb

Please sign in to comment.