Skip to content

Commit

Permalink
Merge pull request #316 from ngmr/improve-java-idiom-oayoI-1c
Browse files Browse the repository at this point in the history
style: improve imports
  • Loading branch information
joe-chacko authored Oct 21, 2024
2 parents e096db8 + 303bd3d commit 345c2cb
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010 IBM Corporation and others.
* Copyright 2024 IBM Corporation and others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -17,10 +17,15 @@
*/
package org.apache.yoko.orb.IMR;

import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
import org.omg.CORBA.portable.Streamable;

//
// IDL:orb.yoko.apache.org/IMR/OADNotRunning:1.0
//
final public class OADNotRunningHolder implements org.omg.CORBA.portable.Streamable
public final class OADNotRunningHolder implements Streamable
{
public OADNotRunning value;

Expand All @@ -36,18 +41,18 @@ final public class OADNotRunningHolder implements org.omg.CORBA.portable.Streama
}

public void
_read(org.omg.CORBA.portable.InputStream in)
_read(InputStream in)
{
value = OADNotRunningHelper.read(in);
}

public void
_write(org.omg.CORBA.portable.OutputStream out)
_write(OutputStream out)
{
OADNotRunningHelper.write(out, value);
}

public org.omg.CORBA.TypeCode
public TypeCode
_type()
{
return OADNotRunningHelper.type();
Expand Down

0 comments on commit 345c2cb

Please sign in to comment.