[go: nahoru, domu]

137c1509886a7897163f70f4645c08ddf0b41632dAdam Powell/*
237c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * Copyright (C) 2012 The Android Open Source Project
337c1509886a7897163f70f4645c08ddf0b41632dAdam Powell *
437c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * Licensed under the Apache License, Version 2.0 (the "License");
537c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * you may not use this file except in compliance with the License.
637c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * You may obtain a copy of the License at
737c1509886a7897163f70f4645c08ddf0b41632dAdam Powell *
837c1509886a7897163f70f4645c08ddf0b41632dAdam Powell *      http://www.apache.org/licenses/LICENSE-2.0
937c1509886a7897163f70f4645c08ddf0b41632dAdam Powell *
1037c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * Unless required by applicable law or agreed to in writing, software
1137c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * distributed under the License is distributed on an "AS IS" BASIS,
1237c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1337c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * See the License for the specific language governing permissions and
1437c1509886a7897163f70f4645c08ddf0b41632dAdam Powell * limitations under the License.
1537c1509886a7897163f70f4645c08ddf0b41632dAdam Powell */
1637c1509886a7897163f70f4645c08ddf0b41632dAdam Powell
1737c1509886a7897163f70f4645c08ddf0b41632dAdam Powellpackage android.support.v4.app;
1837c1509886a7897163f70f4645c08ddf0b41632dAdam Powell
1937c1509886a7897163f70f4645c08ddf0b41632dAdam Powellimport android.text.Html;
2037c1509886a7897163f70f4645c08ddf0b41632dAdam Powell
2137c1509886a7897163f70f4645c08ddf0b41632dAdam Powellclass ShareCompatJB {
2237c1509886a7897163f70f4645c08ddf0b41632dAdam Powell    public static String escapeHtml(CharSequence html) {
2337c1509886a7897163f70f4645c08ddf0b41632dAdam Powell        return Html.escapeHtml(html);
2437c1509886a7897163f70f4645c08ddf0b41632dAdam Powell    }
2537c1509886a7897163f70f4645c08ddf0b41632dAdam Powell}
26